Forums

Bullets showing up in navigation - need them out (3 posts)

  1. celestialfuzzies
    Member
    Posted 2 years ago #

    I am not very talented in CSS so I need a little help finding out how to prevent the bullets I want to use from appearing in my navigation.

    site is: http://www.totalshredtest.com

    Problem is I am using a free theme called RS14 and so I'm not sure how to stop it from listing bullets in my navigation menu. I have tried placing list-style: none in places related to the main menu.

    Currently I have the last part of my style sheet with the following to give my bullet.png image for lists. Just can't keep it out of the navigation and I'm sure it is something simple that I'm overlooking.

    }
    li
    {display: block;
    height: 15px;
    padding-top: 5.5px;
    text-decoration: none;
    background: url(images/bullet.png) no-repeat 0px 3px;
    padding-left: 15px;
    }

  2. celestialfuzzies
    Member
    Posted 2 years ago #

    no ideas?

  3. Samuel B
    moderator
    Posted 2 years ago #

    look in your theme's style.css for this bit:

    #homeright li a {
    	display: block;
    	height: 15px;
    	padding-top: 2px;
    	color: #999999;
    	text-decoration: none;
    	background: url(images/bullet.png) no-repeat 0px 3px;
    	padding-left: 15px;
    }

    remove this line
    background: url(images/bullet.png) no-repeat 0px 3px;

    if you want them gone from sidebar as well
    find this:

    li
    {display: block;
    	height: 15px;
    	padding-top: 5.5px;
    	text-decoration: none;
    	background: url(images/bullet.png) no-repeat 0px 3px;
    	padding-left: 15px;
    }

    remove the same line

Topic Closed

This topic has been closed to new replies.

About this Topic