• Resolved energymv

    (@energymv)


    How might i remove the horrible looking bullets from my links page? Here is my links page.

    Am i stuck with these bullets or can I get rid of them?

    Here is the code for this links page template that i could modify if anyone has any guesses. Codex doesn’t help me with this problem.

    <?php
    /*
    Template Name: Links Page
    */
    ?>
    
    <?php get_header(); ?>
    
    <div id="content">
    
    	<div id="contentleft">
    
    	<?php wp_list_bookmarks('title_li=&categorize=1&between= - &show_description=1'); ?>
    
    	</div>
    
    	<?php include(TEMPLATEPATH."/l_sidebar.php");?>
    
    	<?php include(TEMPLATEPATH."/r_sidebar.php");?>
    
    </div>
    
    <!-- The main column ends  -->
    
    <?php get_footer(); ?>
Viewing 2 replies - 1 through 2 (of 2 total)
  • Find this in your style sheet (it’s at line 326):

    #contentleft ul {
    	list-style-type: square;
    	margin: 0px 0px 0px 20px;
    	padding: 0px 0px 10px 0px;
    	}
    
    #contentleft ul li {
    	list-style-type: square;
    	margin: 0px 0px 0px 20px;
    	padding: 0px 0px 5px 0px;
    	}

    And change it to:

    #contentleft ul {
    	list-style-type: none;
    	margin: 0px 0px 0px 20px;
    	padding: 0px 0px 10px 0px;
    	}
    
    #contentleft ul li {
    	list-style-type: none;
    	margin: 0px 0px 0px 20px;
    	padding: 0px 0px 5px 0px;
    	}
    Thread Starter energymv

    (@energymv)

    Thank Erik!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘modifying format of links page (remove bullets)’ is closed to new replies.