Forums

[resolved] Can't get rid of bullet in title on sidebar (3 posts)

  1. SirLucius
    Member
    Posted 1 year ago #

    I'm having some trouble getting rid of a bullet on one of the titles on my website: http://www.complete-diet-guide.com

    Here is the code that is present in the sidebar.php file:

    <ul><h2><?php _e('About Us'); ?></h2>
    <p>Welcome to the premier diet and health website on the Internet.  This resource was created to help you make better informed decisions before going on a diet or taking any supplements.</p>
    </ul>
    <br />
    <?php if (function_exists('wp_theme_switcher')) { ?>
    			<h2><?php _e('Themes'); ?></h2>
    				<?php wp_theme_switcher(); ?>
    
    <?php } ?>
    			<?php wp_list_pages('title_li=<h2>' . __('Weight Loss Articles') . '</h2>' ); ?>
    <br />
    			<h2><?php _e('Archives'); ?></h2>
    				<ul>
    				<?php wp_get_archives('type=monthly'); ?>
    				</ul>
    <br />
    <h2>Search The Archives</h2>
    			<div id="searchdiv">
    		<form id="searchform" method="get" action="">
    		<label for="s">Search this site:</label>
    			<input type="text" name="s" size="20"/>
    <input type="submit" name="sbutt" value="Go" />
    		</form>
    		</div>
    
    <br />
    			<h2><?php _e('Categories'); ?></h2>
    				<ul>
    				<?php list_cats(0, '', 'name', 'asc', '', 1, 0, 1, 1, 1, 1, 0,'','','','','') ?>
    				</ul>
    <br />
    
    							<?php get_links_list(); ?>
    
    				<h2><?php _e('Meta'); ?></h2>
    				<ul>
    					<?php wp_register(); ?>
    					<li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
    					<li><?php wp_loginout(); ?></li>
    				</ul>
    				</li>
    
    		</ul>
    	</div>

    Any ideas on how to fix this?

    Thanks!

  2. epicalex
    Member
    Posted 1 year ago #

    You need to add a CSS rule for that li item, so li.pagenav and add a list-style: none; to it.

    Also, you want to get these errors sorted:
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.complete-diet-guide.com%2F
    Lots of incorrectly nested items.

    Alex

  3. danzaman
    Member
    Posted 1 year ago #

    try adding the following:

    .pagenav{
         list-style-type: none;
    }

    since you set a class called pagenav to your h2

Topic Closed

This topic has been closed to new replies.

About this Topic