Changing Style of Bullet Lists (Oxygen Theme)

  • Unknown's avatar

    Hello —

    I want to change the style of bullet lists globally in my CSS. (I purchased the Premium package.) I’ve tried Googling the right code but haven’t come up with anything that seems to work. Thanks!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    a) Please be precise when asking CSS questions: “change the style” is too vague.
    b) When you ask how to modify something, it’s more convenient if that something can be found on your page so we can examine it (instead of having to create it in our blogs or visit the demo and look for it).

  • Unknown's avatar

    My apologies!

    You can see what I’m looking for at

    http://pnyengage.org/2013/06/11/bullets/

  • Unknown's avatar

    Thanks!

    Add this:

    .hentry ul {
        list-style: none outside;
        margin-left: 0;
    }
    .hentry ul ul {
        list-style: none outside;
        margin-left: 1.1em;
    }
    .hentry ul li {
        line-height: 1.9em;
    }
    .hentry ul li:before {
        content: "✓";
        color: #F37713;
        margin-right: 0.5em;
    }
    .hentry ul ul li:before {
        content: "•";
        color: #F37713;
        margin-right: 0.5em;
    }
  • The topic ‘Changing Style of Bullet Lists (Oxygen Theme)’ is closed to new replies.