• Resolved fiffer010

    (@fiffer010)


    Hi,

    I’m having trouble removing the bullets from the top navigation bar. I am sure its something simple but I still cant figure it out.

    <div id="globalnav">
    	<ul>
                    <li><a href="https://www.oneworldsdf.com">Main</a></li>
    		<li><a href="https://www.oneworldkravmaga.com">Krav Maga</a></li>
    		<li><a href="https://www.crossfitoneworld.com">CrossFit</a></li>
    		<li><a href="https://meatymcbrown.typepad.com/guerrilla_jiujitsu_at_one/">Jiu-Jitsu</a></li>
    		<li><a href="https://www.oneworldbootcamp.com">Boot Camp</a></li>
    
    	</ul>
    </div>
    #globalnav {
    list-style-type: none;
    	width: 100%;
    	float: left;
    	margin: 0 0 1em 0;
    	padding: 0;
    	background-color: #f2f2f2;
    	border-bottom: 1px solid #ccc;  }
    #globalnav ul {
            list-style-type: none;
    	list-style: none;
    	width: 800px;
    	margin: 0 auto;
    	padding: 0; }
    #globalnav li {
    
    	float: left; }
    #globalnav li a {
    	display: block;
    	padding: 8px 15px;
    	text-decoration: none;
    	font-weight: bold;
    	color: #c00;
    	border-right: 1px solid #ccc; }
    #globalnav li:first-child a {
    list-style-type: none;
    	list-style: none;
    	border-left: 1px solid #ccc; }
    #globalnav li a:hover {
    	color: #000;
    	background-color: #fff; }

Viewing 4 replies - 1 through 4 (of 4 total)
  • esmi

    (@esmi)

    Site url? Posting CSS is of no use at all.

    Thread Starter fiffer010

    (@fiffer010)

    oneworldkravmaga.com/blog

    esmi

    (@esmi)

    I can’t see any bullets in your top nav using Firefox but you could always add

    list-style:none;
    list-style-image:none;

    to:

    #globalnav li {
    float:right;
    }
    Thread Starter fiffer010

    (@fiffer010)

    Fixed it. In the theme it was set up so that the bullets were back ground images. Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Help Remove bullets’ is closed to new replies.