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?
Works for me:sam.wheale said:Thanks mate - I tried copying that straight over and I still get the same problem![]()
SW.
No it shouldnt as youve set the margins on the left and right, it will wrap content that is wrapable (not really long url's or a really really long word)sam.wheale said:Thanks mate, that certainly does work, but won't the 'auto' width cause me problems when I start adding content![]()
SW.
#bottom a:link, #bottom a:visited, #bottom a:active {
color: #FFFFFF;
text-decoration: none;
border: none;
}
#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;
}
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; }