• Resolved Ajay

    (@ajay)


    I have created a simple child theme to override some of the elements of Neve but most of the styles remain the same as per the main theme.

    I’ve also upgrade to the latest Neve 3.0 skin and for some reason the list doesn’t display the bullet or the left margin.

    I’ve narrowed this to this rule in style-main-new.css but I’m unsure as to how I can override this without rewriting the CSS. Is there a way to do so?

    
    ul {
      list-style: var(--listStyle, none);
    }
    

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Mat

    (@mateithemeisle)

    Hello @ajay ,

    Thank you for using Neve and for reaching out!

    The child theme should inherit the properties of the Neve theme unless specified otherwise. Thus if you wish different styles to apply to different elements, you need to redefine them using your own CSS. Also, in case you need it in the future, you can use the already made child theme that is available here.

    If you want unorderered lists to display as bullet points you can wite the following code into the CSS style sheet of your child theme and it will overwrite the default.

    ul {
      list-style-type: circle !important;
    }

    Thank you and please let us know if this worked for you!

    Thread Starter Ajay

    (@ajay)

    Thank you for this. I’ve gone ahead with tweaking the CSS in the child theme as suggested above.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘List bullet not displaying’ is closed to new replies.