Page 1 of 1
Stupid Underlines on every page (Solved)
Posted: Tue Jun 18, 2013 1:15 pm
by astuke
I can't figure this out, and I'm hoping someone can point me in the right direction. I have these stupid underlines on all text, on every page and I can't seem to figure out where it is coming from.
http://sftctest.starrtech.net/cms/
Re: Stupid Underlines on every page
Posted: Tue Jun 18, 2013 1:25 pm
by Rolf
Re: Stupid Underlines on every page
Posted: Tue Jun 18, 2013 10:44 pm
by paulbaker
On that page you have quite a few HTML problems.
Like here:
Code: Select all
<div id="middle-3column">
<div id="breadcrumb"> <a href="#"> <img src="uploads/bsa/global/print.gif" alt="print" title="Print" border="0" id="Print" /></a> <a href="#"> <img src="uploads/bsa/global/bookmark.gif" alt="bookmark" title="Bookmark" border="0" id="Bookmark" </a> <span class="crumb"> </div>
<div id="middle-element">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<__html>
<head>
</head>
</__body>
<div style="text-align: center;">
<p>Welcome! Bienvenidos! to the Santa Fe Trail Council</p>
e.g. The
Code: Select all
<img src="uploads/bsa/global/bookmark.gif" alt="bookmark" title="Bookmark" border="0" id="Bookmark"
needs to be closed with a
> which is what is causing your underlining issue.
And
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<__html>
<head>
</head>
</__body>
should never appear in the middle of a HTML document....perhaps a template issue?
Re: Stupid Underlines on every page
Posted: Wed Jun 19, 2013 5:08 pm
by astuke
Thanks that did take care of my underlines. In the template doctype is at the top.
Now I have | marks I have to find and get rid of. This is an old BSA template I converted to cmsms, so I'm sure there are things I just missed.
Re: Stupid Underlines on every page
Posted: Wed Jun 19, 2013 6:33 pm
by Dr.CSS
You still have lots of invalid HTML including DOCTYPE in the middle of the page...
Re: Stupid Underlines on every page
Posted: Wed Jun 19, 2013 6:45 pm
by astuke
Got it, pages were copied from the old website, that is where the doctype in the middle came from
Re: Stupid Underlines on every page
Posted: Wed Jun 19, 2013 8:39 pm
by astuke
I have a global content block and no matter what i do it adds that doctype in the middle is there any way to prevent that?
Re: Stupid Underlines on every page
Posted: Wed Jun 19, 2013 10:00 pm
by astuke
ok fixed the duplicate in the global content blocks, had to take the check off. Use WYSIWYG: then it would save.
Re: Stupid Underlines on every page
Posted: Sat Jun 22, 2013 9:51 pm
by Rolf