Hello,
Can you tell me why my copyright footer ends up displaying in the top right hand column instead of at the end of the page in Firefox/Chrome? But displays correctly at the bottom in IE9!
Thanks,
Rudy
Hello,
Can you tell me why my copyright footer ends up displaying in the top right hand column instead of at the end of the page in Firefox/Chrome? But displays correctly at the bottom in IE9!
Thanks,
Rudy
I think you've some html coding errors on your website: http://validator.w3.org/check?uri=http%3A%2F%2Fwww2.helpdesktv.ca%2F&charset=%28detect+automatically%29&doctype=Inline&group=0 - especially the second syntax error (missing closing tag) can break the website.
Sorry Dude, I don't see that error. The second one down is a 'there is no attribute "rel"" error. I don't see any missing closing tag errors.
Hi Rudy,
Try making the div that holds your copyright a class. Then you can add a clear to that class so that it gets pushed to the bottom after all the floats. So something like:
.mycopyright {
clear: both;
width: 100%;
background-color: white;
}
You can add that to your style.css once you've added the class="mycopyright" to the div.
Regards,
Devin
Thank you soooo much Devin. That did the trick!
Cheers,
Rudy
This topic has been closed to new replies.