ok we have these 3 lines in the inline image css:
body { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbgcolor.jpg”); } <?php /* Checks to see whether it needs a sidebar or not */ if ((! $withcomments) && (! is_single()) && (! is_page())) { ?>
#page { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbg.jpg”) repeat-y top; border: none; } <?php } else { // No sidebar ?>
#page { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbgwide.jpg”) repeat-y top; border: none; } <?php } ?>
The trouble is every time I coment out the “checks to see if sidebar” stuff from the end of the lines, it breaks the whole page with parsing errors. If anyone can recopy this for me with the relevant stuff commented out I would be grateful.
(I can see and find what needs doing, but cant read the php to do it.
This is going to be my summer project…learn to read php!)