kilps
Expert Member
Hi all - I'm getting very close to giving up on this - hopefully someone here knows what's going on 
Basically if you look at the website http://www.sailing360.co.za/ in Firefox everything looks fine - but if you look at it in internet explorer the sidebar on the right drops to bellow the main content...
The html layout is something like:
The css file which should be causing any issues is http://www.sailing360.co.za/wp-content/themes/3columnk2/styles/jolie/jolie.css - and the bit which should be getting this all to work is:
thanks
kilps
Basically if you look at the website http://www.sailing360.co.za/ in Firefox everything looks fine - but if you look at it in internet explorer the sidebar on the right drops to bellow the main content...
The html layout is something like:
HTML:
<div class="content">
<div id="primary">
main content
</div> <!-- #primary -->
<div class="secondary">
<div class="lsidebar">
left part of sidebar
</div>
<div class="rsidebar">
right part of sidebar
</div>
</div>
</div>
The css file which should be causing any issues is http://www.sailing360.co.za/wp-content/themes/3columnk2/styles/jolie/jolie.css - and the bit which should be getting this all to work is:
Code:
#page {
background: white;
padding: 0 0 10px;
border: 5px solid #474747;
border-top: none;
width: 950px !important;
}
#primary { /* Left and Right margins to the primary content */
margin: 0 20px 0 20px !important;
}
.secondary { /* CSS for the margins to the sidebar and the whole sidebar width */
margin: 0 0 20px 545px !important;
width: 405px !important;
top:0px;
}
.lsidebar { /* CSS for left sidebar */
margin: 0 !important;
width: 180px !important;
float: left !important;
padding: 0 9px 0 9px !important;
border-left: 1px solid #eee;
border-right: 1px solid #eee;
overflow: hidden;
}
.rsidebar { /* CSS for right sidebar */
margin: 0 !important;
width: 180px !important;
float: right !important;
padding: 0 15px 0 10px !important;
overflow: hidden;
}
thanks
kilps