bumboo:
Hi there,
I've searched in every corner of the forums, and I'm sure the answer is here somewhere but I can't find it! :frusty:
I'm having a problem with my sideboxes. When I activate them they appear at the bottom of my screen under the main text on the right hand side. This happens with any sidebox I activate under Tools>Layout Boxes Controller.
I've checked the column widths in Configeration>Layout Settings and they are all at 150px.
Can anyone please help!!!!
Many thanks!
Tiff - bumboo.com.au
Its because you did this:
.centerColumn {
width:95%!important;
float:left;
margin:0 2% 2% 3%;
text-align:left;
line-height:1.6em;
display:inline; /* fixes IE Bug in IE6 and earlier - do not remove */
}
That width is supposed to be 75%.
I assume you changed it because you wanted to have the image go all the way across the home page.
IF you change it back to 75%, then the sideboxes will work as desired.
If you want the sideboxes to never show on the home page. I think adding this to your css will do it:
#indexHomeBody .centerColumn {
float:left!important;
width:95%!important;
}
#indexHomeBody .navColumnTwo, #indexHomeBody .navColumnOne {display:none;}