• Resolved PC1271

    (@pc1271)


    I’m using the Customizr child theme I downloaded from the web site. Everything is looking good except when creating lists.
    The list bullets are not being shown. I have no idea what to do about it. I tried to put some css to change all ul list by adding this;

    ul{
      list-style: square outside none;
    }

    but I see nothing changed. Anyone has any idea what else I can try to get this right? And why is the default behavior not to show the standard bullet?

Viewing 11 replies - 1 through 11 (of 11 total)
  • Try with:

    ul li {
      list-style: square outside none;
    }

    be aware that this rule will affect all the unordered lists sitewide, that I don’t think you want.

    Thread Starter PC1271

    (@pc1271)

    Thanks d4z_c0nf,

    I tried your suggestion. I would have been happy to see any change, even if it would effect all unordered lists, but nothing happened. I still don’t see any bullets anywhere.
    Only when I use a list widget, I get to see bullets. But I also want to use widgets in my FAQ. And in my FAQ, I can’t use widgets. 🙁

    So, I’m still looking for a solution.

    JTS_IL

    (@jts_il)

    link please…

    where did you add the rule that d4z-c0nf suggested?

    Thread Starter PC1271

    (@pc1271)

    I added the code in style.css of my child theme.

    JTS_IL

    (@jts_il)

    Strange…
    that should work!

    try to put it in the appearance > customize > advanced options > custom CSS

    that is the highest hierarchy of css, you can also add !important.

    if that doesn’t work – share a link so other members can think of something.

    Thread Starter PC1271

    (@pc1271)

    Yeah, when I put the code there, I see the bullets in my main navigation menu; so now it’s working.
    Of course, I don’t want them in my navigation menu and there were I do want them (in my FAQ section), it still doesn’t work.

    Unfortunately, sharing the site with other member is not possible at this time since it’s still under development on my localhost.

    JTS_IL

    (@jts_il)

    If that’s the situation – you need to check what overrides your style.css (I use “inspect element” in Chrome)

    then you need to fine the specific elements that you want to display with bullets and declare the rule with specific class names

    Thread Starter PC1271

    (@pc1271)

    Thx for the advice, I’ll try that.

    Thread Starter PC1271

    (@pc1271)

    Ok guys, I got it working now: I’m targeting the specific class where I want to see the bullets to show.
    Still, it’s strange that I have to do this. I would expect the theme to handle this.
    Anyway, problem can be solved with a little effort.

    I have the same Problem ! I use site origin page builder for place the buttons on the bottom of my page. When I view the page preview it’s all ok ! But when load the page … there isn’t a bullent point list.

    Please helpe me ! Thanks 🙂

    I SOLVED !!!

    .widget li {
    list-style: square outside none;
    }

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘List bullets are not showing’ is closed to new replies.