• Hi,
    My bullet points are not being shown in the published page. In the editor I can see the bullet points, change their appearance (square, circle, empty circle) but text in the front end does not reflect that

    Issue in the page below at the end under “Características:”
    https://www.appy.co.ao/appy-saude/

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • You need to add something like this to your style sheet:
    /*This controls the ul and li tags in center column*/
    #content .liststy ul{
    list-style: square outside none;
    margin-left: 15px;
    }
    #content .liststy ul ul{
    list-style: disc outside none;
    margin-left: 15px;
    }
    #content .liststy ul ul ul{
    list-style: circle outside none;
    margin-left: 15px;
    }

    #content ul.ullist ul {
    list-style: square outside none;
    margin-left: 36px;
    }
    #content ul.square ul {
    list-style: square outside none;
    margin-left: 10px;
    }
    #content ul.square {
    list-style: square outside none;
    margin-left: 10px;
    }
    #content ul.square li {
    list-style: square outside none;
    margin-left: 10px;
    }
    #content ul.disc ul {
    list-style: disc outside none;
    margin-left: 15px;
    }
    #content ul.disc {
    list-style: disc outside none;
    margin-left: 15px;
    }
    #content ul.disc li{
    list-style: disc outside none;
    margin-left: 15px;
    }

    #content ul.circle ul {
    list-style: circle outside none;
    margin-left: 15px;
    }
    #content ul.circle {
    list-style: circle outside none;
    margin-left: 15px;
    }
    #content ul.circle li{
    list-style: circle outside none;
    margin-left: 15px;
    }

    Then when you make a list, you need to change over to the code view and wherever you have a ul tag, you need to give it a class, depending on what symbol you want.
    Like <ul class=”disc”> or <ul class=”circle”>, etc. Then it will show on the front.

    Plugin Author Andrew Ozz

    (@azaozz)

    @aaanativearts is right. How lists are styled on the site is decided by your theme. You may need to modify it a bit if something is not shown right.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Bullet points not shown in front-end. only in backend’ is closed to new replies.