Banner Width

liunx

Guest
Hi, I am wanting to add banners to the bottom of my pages.The problem is when I do this it pushes everything sideways like this <!-- m --><a class="postlink" href="http://www.nettraffic4u.com/contact.html">http://www.nettraffic4u.com/contact.html</a><!-- m --> and you have to use the horizontal scroll bar. <br />
How do I ad banners to the other pages without it pushing everything out sideways.Thanks<!--content-->Just a comment on your code, you should run it though a validator, example and comment from one,<br />
<br />
an attribute value must be quoted if it contains any character other than letters (A-Za-z), digits, hyphens, and periods; use quotes if in doubt<br />
<br />
<br />
Line 238, character 4: <br />
<TR><br />
<br />
Error: element TR not allowed here; check which elements this element may be contained within<br />
<br />
The maximum number of errors was reached. Further errors in the document have not been reported.<br />
<br />
<br />
Probably use percentages for your width's on your banners<!--content-->Maybe you fixed it using the advice montroze gave you because it shows up for me. You should take some simple table tutorials, this will help you out a lot.<br />
Good Luck,<br />
Paul<!--content-->The page does eventually load, but the errors will strain some browsers into non-display. Luckily although there are hundreds of errors listed, they are all basically the same 3 or 4 mistakes repeated over and over. An hour, maybe quite a bit less, with a text editor, and the "find and replace" function can fix 99% of this: <!-- m --><a class="postlink" href="http://validator.w3.org/check?uri=http%3A%2F%2Fwww.nettraffic4u.com%2Fcontact.html&charset=%28detect+automatically%29&doctype=HTML+4.01+Transitional">http://validator.w3.org/check?uri=http% ... ansitional</a><!-- m --> .<br />
<br />
Put this as the very first line of your file:<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><br />
<br />
Add these into the META tags:<br />
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><br />
<META HTTP-EQUIV="Content-Language" CONTENT="EN-GB"><br />
<br />
Put Quotes on all attributes [ Search for =#FFFFFF and replace with ="#FFFFFF". Likewise =#c0c0ff becomes ="#c0c0ff" and =#000000 becomes ="#000000" and so on ].<br />
<br />
Add ALT="" attributes to all IMG tags.<br />
<br />
Having done this, the remaining errors in the HTML document structure, and nesting of elements, will become obvious.<!--content-->
 
Back
Top