Viewing 11 replies - 1 through 11 (of 11 total)
  • 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>.

    Thread Starter hungrywriter

    (@hungrywriter)

    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

    • <h2>Pages</h2>
    Thread Starter hungrywriter

    (@hungrywriter)

    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?

    Thread Starter hungrywriter

    (@hungrywriter)

    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.

    Thread Starter hungrywriter

    (@hungrywriter)

    Where is that url… line. I found a few in the stylesheet but not in the above code.

    Thread Starter hungrywriter

    (@hungrywriter)

    Thanks for the replies! I got it to work.

Viewing 11 replies - 1 through 11 (of 11 total)

The topic ‘I can’t get rid of a Bullet Point in a theme’ is closed to new replies.