Home Forums WordPress Themes – Premium Encounters Cannot remove grey bullets

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #14360
    Prisca
    Participant

    Hello

    I want to replace the default grey bullets with mine – I have added mine but for some reason I cannot find a way to remove the grey one so I have double bullets – removed everything I found in the css for ul and li but no luck. See screenshot attached.

    Please can you tell me how to do that?

    Thank you so much for your help 🙂

    Cheers,
    screen-double-bullets.jpg

    Attachments:
    You must be logged in to view attached files.
    #18659
    Sushil Adhikari
    Moderator

    The grey bullet list style is an image that the theme has css for. How did you add your own to show up on the lists, and is this the style you want for your default style of list? The styling for the lists are in the style.css file and begin around line 650. The default one (loads a grey bullet image) looks like this:

    ul li {
    	padding-left: 16px;
    	background: transparent url('images/sprite-list.png') -212px 0 no-repeat;
    }
    #18660
    Prisca
    Participant

    Thank you so much – I did that – replaced your image with mine and for some reason I still had double bullets. Even remove your image all together and place my bullet with inline css…still have the grey bullet…

    Thank you 🙂

    #18661
    Prisca
    Participant

    Ok – here what I did:

    ul li {
    padding-left: 16px;
    background: transparent url(‘images/wattle.png’) -212px 0 no-repeat;
    }

    the image wattle is in the images folder. Now the grey bullet is gone but then my own bullet is not showing on the site – like I have no bullet at all unless I put the bullet inline for each ul on the site..weird huh..

    Thanks 🙂

    #18662
    Sushil Adhikari
    Moderator

    you will want to change the -212px positioning because that is for the image sprite (one image that contains all the list images together and shown by coordinates).

    I would imagine that your list bullet image is just a single one correct? If so, change that -212px to perhaps 0. Right now that css is saying position that image -212px to the left and 0px from the top. So your list bullet image is positioned off the page by -212 px 🙂

    #18663
    Prisca
    Participant

    YEAH!!! Works. Thank you so much as usual 🙂

    Enjoy your weekend.

    Cheers,

    #18664
    Sushil Adhikari
    Moderator

    I will…going for a Starbucks coffee right now!
    By the way, feel like taking a survey to give input on themes in general and this site? No obligation of course, but if you do, click on the link in my signature below. Everyone’s feedback will help make some changes for the new year.

    #14361
    Prisca
    Participant

    Done! 🙂

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.