Hi,
Sorry for the duplicate post, I orginally sent this to the wrong section.
I'm trying to exclude my sidebar from a particular category of posts ('MAPS') so that I can fill the page with large googlemaps:
http://interamericana.co.uk/2009/09/nicaragua/
So far I have taken the following steps.
First, I edited single.php;
I changed:
<div id="centercol">
to:
<div id="centercol" <?php if( in_category('MAPS') || is_category('MAPS') ) { echo 'class="fullwidth"'; } ?>>
and then:
<?php get_sidebar(); ?>
to:
<?php if( !in_category('MAPS') || !is_category('MAPS') ) { get_sidebar(); } ?>
After, that I added the following to style.css:
.fullwidth {
width:865px;
}
However, as you can see, this has not worked.
Any help would be very greatly appreciated.
Thanks,
Richard