In Firefox, the side bar works very nicely, but in Internet Explorer, the side bar drops below the content.
Any idea how to fix this.
In Firefox, the side bar works very nicely, but in Internet Explorer, the side bar drops below the content.
Any idea how to fix this.
Any help?
You'll probably want to start by validating your site.
Often times, fixing validation errors will help get all the browsers to see your site the same way.
The total width for you main content plus you side bar exceeds the width you've set for the page. Look in your stylesheet and look for this code
.center {
margin: 15px;
...
Change it to this
.center {
margin: 5px 15px;
...
If it is still messed up change your width also
.center {
width: 540px;This topic has been closed to new replies.