• Resolved quant768

    (@quant768)


    I am really happy with Generatepress, but I am not able to show bullet points on my wordpress pages with Generatepress.

    Now I have tried to deactivate nearly all not necessary plugins.

    When I switch to a standard wordpress theme e.g. Default or Classic the bullet points are shown.

    I am using also the premium functions of Generatepress.

    Please note that I am using this plugins:
    Page Builder by SiteOrigin
    SiteOrigin Widgets Bundle
    TinyMCE Advanced
    Simple Custom CSS
    GP Premium
    Contact Form 7
    Black Studio TinyMCE Widget
    Menu Icons

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter quant768

    (@quant768)

    I found the issue.

    In the stylesheet style.css there is the following entry:

    .widget ul li {
    list-style-type: none;
    position:relative;
    padding-bottom: 5px;

    I have used the firefox element inspector and changed “none”-> “disk”. Then all bullet points are shown.

    My page is using the SiteOrigin visual editor which is a widget. Does the css code above affect also other widgets? If yes then please tell me how to fix this.

    Should I add some css into my “Simple Custom CSS”?

    Hi quant768. Welcome to the GeneratePress forum. The short answer to your question is “yes”, that will affect any widget on the page that displays a list and doesn’t have a specific style. To override that you could add the following to your custom css:

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

    If that doesn’t do it try adding the position property:

    .widget ul li {
      list-style: disc inside;
    }
    Thread Starter quant768

    (@quant768)

    Thanks. Solved

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Bullet Points are not shown’ is closed to new replies.