Support » Fixing WordPress » Bullet and Lists trouble.

  • I’m helping a friend by making her a WP website.

    Long story short, I’m setting up her ‘bio’ page and I’m having problems with setting up bullets and lists.

    Here’s the link: http://jessicaschechter.com/bio/

    I’m trying to create a list of the productions she’s directed. All the text is a faded grey, but when I create/set-up bullets it changes the font and doesn’t display bullets.

    I can’t seem to figure out how to change this. The visual editor definitely won’t be of any help here…

    I assume it’s somewhere in the css or the template code… but I’m clueless where to find the code that is overriding the font/look of the bullets/lists.

Viewing 1 replies (of 1 total)
  • J M

    (@hiphopinenglish)

    Are you creating this in the Visual or HTML Editor. If you can make a list in HTML yourself, the HTML editor will be loads better. Your theme is styling your lists for you. If you want to override the theme’s stylings for a particular list or lists, you’ll need to give those lists a class to be able to write some different styles.

    For example, in the HTML Editor, your list could look like so:

    <ul class="directed-films">
        <li>Film 1</li>
        <li>Film 2</li>
    </ul>

    Then you could add specific styles for this list to your Child Theme’s stylesheet.

    ul .directed-films {
        list-style-type: decimal;
        color: #FFFFFF;
    }

    If you want to change all the ul/li stylings in your Child Theme, hunt through the theme’s style.css and play around.

Viewing 1 replies (of 1 total)
  • The topic ‘Bullet and Lists trouble.’ is closed to new replies.