Pls be gentle with me...
I would like to make the background of the subsidiary asides full width and apply a nice colour to it.
If I was in html I think I'd add another div around <div id="subsidiary"> and set it's colour and width (so all the asides would stay centred using the margin: 0 auto; that's in the css).
I've figured out how to add an extra div in the footer by adding:
// Customising footer
function childtheme_footer_extradiv() { ?>
<div id="footer_extradiv">
</div>
<?php }
add_action('thematic_footer','childtheme_footer_extradiv');
?>
to functions.php
But adding another div 'around' and existing div has stumped me (I've only done html and css up to now).
Can anyone help out?
Cheers!