Posts made by Patrick Malley

185 and 175 are narrow for a Moodle theme. However, assuming you are working in a very controlled environment (i.e. users won't be able to add their own sideblocks once you get started), I can see the desire for the narrow widths.

The problem with your widths not taking effect might have something to do with a mixture between the browser you're using and the width of the content on the page.

As a test, change the config.php width items to something large - like 250px and see if that changes anything for you. If it works, then you'll know that the PHP is working.

Then, consider adding this to your stylesheet:

#left-column {
width:185px;
}

#right-column {
width:175px;
}

You might need to add !important to the widths, but this should lock things into place.