I added the 2 sections of bolded code below. I want to remove the sidebar on all pages except the home/frontpage. I put an if statement to say if it is the frontpage show the bar otherwise don’t. It doesn’t work. Am I missing something?
Thanks,
Marc
/* content START */
#content {
background:#FFF url(img/sidesep.gif) right repeat-y;
/* mab min-height:400px; */
<?php
global $post; // if outside the loop
if (is_front_page()) { // test to see if the page is frontpage
min-height:400px; // Leave the sidebar
} else { // Not frontpage
min-height:800px; // Remove the sidebar
}
?>
}
/* content END */
/* main START */
#main {
background:#FFF url(img/main_shadow.gif) top repeat-x;
/* mab width:605px; */
<?php
global $post; // if outside the loop
if (is_front_page()) { // test to see if the page is frontpage
width:605px; // Leave the sidebar
} else { // Not frontpage
width:900px; // Remove the sidebar
}
?>
padding:13px 15px 15px;
float:left;
overflow:hidden;