hello .. widgets style: 2- sidebar.php: 3- functions.php: hint may help: i tried to exchange "<p id="box">" with h2 .. and the style worked and the text was in h2 size and color !
the problem is: i could not change the style of the sidebar or any of the widgets inside.
wordpress blog details:
1- customized theme contains only one style sheet (CSS) ..
and here's the style of the sidebar:
#sidebar{
background-color: #000000;
}
#box{
background-color: #FFFFFF;
}
#title{
font-size: 1.5em;
}
<div id="sidebar">
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar() ) : ?>
<?php endif; ?>
</div>
<?php
if ( function_exists('register_sidebar') )
register_sidebar(array(
'before_widget' => '<p id="box">',
'after_widget' => '</p>',
'before_title' => '<span id="title">',
'after_title' => '</span>',
));
?>
i tried for so long to find out why sidebar does not use the main CSS for the theme and still didn't know the answer.. hope you lead me to something =)
thanx any way..