Hi,

I'm trying to set up my store so the right hand column appears only for the main index page. I've set up the required if-then logic succesfully in tpl_main_page.php but not in the css that controls the spacing for the right hand column.

Here's jettrue's previous advice on how to control the column width:
Quote Originally Posted by jettrue View Post
The space is controlled by the padding-right of .outer:

.outer {
padding-left: 165px; /* Same width as margin-left for the float-wrap div */
padding-right: 150px; /* Our right column width */
}

So the content of my box is appearing correctly but it's either sitting on top of the center column or leaving an empty right-hand column, depending on whether I set padding-right to 0px or 150px respectively.

Does anyone know how I get the width of this column to adjust based on which page is being viewed?

Thanks!