I downloaded a beach theme and the header won't show up after I upload the theme to my blog. I looked around, and I was told that if i deleted the functions php that it would work...That worked, but now the widget controls won't work(I assume because I took out the functions.php) I don't know enought to find what I hope is a simple solution. If you need any other info, I'll be happy to supply it if you can tell me what you might need to fix the problem. Thanks.
jaytime,
Could you please post a link where I can download the theme?
jaytime,
Hi, I downloaded the theme and the functions.php file seems to be an older version of the default theme. If I were you, I would create a new functions.php file that contains only the following code:
<?php
if ( function_exists('register_sidebar') )
register_sidebar(array(
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h2 class="widgettitle">',
'after_title' => '</h2>',
));
?>
Hope this works!
-Mike
That seemed to work perfectly...Thank you so much. YOur a lifesaver. Thanks again.