Thanks mate - I tried copying that straight over and I still get the same problemLongbow said:It's the margin and width in #main_content that's the problem.
Use this:
Code:#main_content { margin-left: 200px; margin-right: 200px; height: 1000px; border: solid 4px; background-color: #FFFFFF; }
As per:addy_010 said:im pretty sure its to do with the position:fixed thing, plus having the main content at 60%,
can u post the htmlas well so i can test my theorys out for u?
Thanks for the tip matemarc2003 said:change the width of your #main_content to auto.
also lose the duplication by using commas.....
Code:#bottom a:link, #bottom a:visited, #bottom a:active { color: #FFFFFF; text-decoration: none; border: none; }
instead of
Code:#bottom a:link { color: #FFFFFF; text-decoration: none; border: none; } #bottom a:visited { color: #FFFFFF; text-decoration: none; border: none; } #bottom a:active { color: #FFFFFF; text-decoration: none; border: none; }