Hi, I have actually installed the Courtney Tuttle's SEO version but I'm having a problem with it and was hoping you could help.
When I use the sidebar widgets, my CSS styles for the sidebar don't work. I'm not sure if this is due to Court's editing or the original theme. I'm fairly competent at playing around with template files but I'm not sure exactly what I need to do to fix this. Can anyone point me in the right direction?
Thank you.













Fixed: functions.php edit
My main problem was the default settings for wordpress widgets so I have edited functions.php and it now reads as follows.
<?php
if ( function_exists('register_sidebars') )
register_sidebars(2, array(
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h3>',
'after_title' => '</h3>',
));
?>
So I now have a css class that I can build on and most importantly, I have overwritten the default h2 title so that it is h3. Yay!
Post new comment