look in the css for a line like:
content:
or
li:before
It’s because you have a <li> in front of <h2>Pages</h2>.
I found this in the css:
#content ul li {
background: url(‘img/bullet.gif’) no-repeat 0 7px;
padding-left: 1.5em;
What do about that?
Where do I find
I can find H2 when I view source direct from the website but can’t find it on any of the files in the wp-content directory for this theme.
Your theme’s sidebar, probably sidebar.php.
Are you using the original copy of the theme or have you modified it?
I am using the original copy of the theme.
here’s the sidebar code:
<?php wp_list_pages('title_li=<h2>' . __('Pages') . '</h2>' ); ?>
<h2><?php _e('Categories:'); ?></h2>
<ul><?php wp_list_cats('optioncount=1'); ?></ul>
<h2><label for="s"><?php _e('Search:'); ?></label></h2>
<ul>
<li>
<form id="searchform" method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<div style="text-align:center">
<p><input type="text" name="s" id="s" size="15" /></p>
<p><input type="submit" name="submit" value="<?php _e('Search'); ?>" /></p>
</div>
</form>
</li>
</ul>
<h2><?php _e('Monthly:'); ?></h2>
<ul><?php wp_get_archives('type=monthly&show_post_count=true'); ?></ul>
<h2><?php _e('RSS Feeds:'); ?></h2>
<ul>
<li>
<a title="RSS2 Feed for Posts" href="<?php bloginfo('rss2_url'); ?>">Posts</a> | <a title="RSS2 Feed for Comments" href="<?php bloginfo('comments_rss2_url'); ?>">Comments</a></li>
</ul>
try this
get rid of the
[li] tags in front of the search
that or I would contact the author
remove the background: url... line.
Where is that url… line. I found a few in the stylesheet but not in the above code.
Thanks for the replies! I got it to work.