Viewing 12 replies - 1 through 12 (of 12 total)
  • You need to add in your style sheet

    ul {
    list-style: none;
    }

    That will remove bullets from your unordered lists. However if you want bullets on certain lists you will have to start assigning classes.

    Thread Starter bmeredith84

    (@bmeredith84)

    Just added that and no luck. Any other ideas?

    Okay…try finding this, it should be on line 1097 of your style.css

    .entry ul {margin: 0 0 25px 10px;}

    and change it to

    .entry ul {
    margin: 0 0 25px 10px;
    style-type: none;
    }
    Thread Starter bmeredith84

    (@bmeredith84)

    Man still nothing, shoot. Is it because it is a plugin? Do I need to change something with that instead of the theme css and php?

    Thread Starter bmeredith84

    (@bmeredith84)

    Here is the css for the plugin:

    .widgets_on_page ul, .widgets_on_page ul li {list-style:none;background:none; style-type: none; }
    
    .widgets_on_page ul { style-type: none; list-style:none; }

    I added the second line and put in style-type: none; on the first line.

    So frustrating! Still nothing.

    funky. how about changing this to none instead of disk, line 1099:

    .entry ul li {
        list-style: disc inside none;
    }

    that fixed it on my screen.

    …on your main style.css not the plugin.

    Thread Starter bmeredith84

    (@bmeredith84)

    Nope still nothing.

    Thread Starter bmeredith84

    (@bmeredith84)

    I have scoured the net for ways to fix this and nothing. Very odd.

    Strange. That should have worked.

    you could try

    .widgets_on_page ul {
    list-style: none;
    }

    if that doesn’t work I’m out of ideas.

    Thread Starter bmeredith84

    (@bmeredith84)

    So I got it:

    .entry ul li {
        list-style: none;
    }

    I put disc inside none at first, I didn’t read your explanation correctly.

    Thanks so much for your help! Really appreciate it.

    Cool. Glad you got it worked out.

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Dot appearing before widget’ is closed to new replies.