• Resolved jeffrey262

    (@jeffrey262)


    I know this topics has come up before. My theme has my bullets turn off. I am trying to get my bullets to appear once its published. Here is a link
    https://www.mobilitysolutionsconsultant.net/byod-policy-2/

    .social-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;

    However, there are many list-style listed in the css file. I am not sure which one to change nor do I know the code. Here are two others

    }

    .widget ul {
    font-size: 16px;
    list-style: none;
    padding: 0;
    }

    .widget ol {
    list-style: inside;
    padding: 0;
    }

    Any help would be greatly appreciated.

Viewing 6 replies - 1 through 6 (of 6 total)
  • You want:

    .widget ul {
        list-style-type: disc;
    }
    Thread Starter jeffrey262

    (@jeffrey262)

    I could not find the code you referenced in my css. Do I input the code you referenced into my css sheet? Where exactly do I put it? I’m sorry. I am a total newbie trying to learn how to build websites.

    Don’t edit your theme’s stylesheet directly, as you’ll lose those changes if your theme is ever updated in the future, to fix bugs or security issues or to add new features. Better to use either a custom CSS plugin or your theme’s built-in custom CSS option, if one exists.

    Thread Starter jeffrey262

    (@jeffrey262)

    My template allows for adding css styles within the visual editor of the paragraph that I am trying to add bullets. Do I put the reference code above

    .widget ul {
    list-style-type: disc;
    }

    into the box labeled CSS Style? What do I put into the box that say’s Widget Class? I put the reference code into the CSS style then updated it. None of the bullets appeared where they were suppose to. In my Visual & Text view, the bullets are present, but after publishing the site, the bullets are not viewable. I think they are turned off. How do I turn them on?

    I have your theme loaded in my local WP install, but I can’t find the boxes you’re referring to. Can you tell me how to find those boxes so I can see what they do?

    Alternatively, you could use a custom CSS plugin and you wouldn’t have to worry about whether the code was in the right place or not.

    Thread Starter jeffrey262

    (@jeffrey262)

    Thank you for all your help. The bullets are visable

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘I can't get my bullets to show up’ is closed to new replies.