Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #29143

    I upgraded to 2.1 and for some reason, bullet points aren’t showing anymore. I checked inspector and the 2nd link doesn’t seem to be adopting the following code in base.css:

    ul.disc, .entry-content ul { list-style: disc outside; }

    Showing Bullet

    http://goo.gl/MhR1OO

    Strange no bullet

    http://goo.gl/4y6bJS

    (note that 2nd link is to a staging while the other is a production)

    Both base.css and custom.css are the same for both sites.

    #139831

    Hey,

    They’re both not showing bullet points because your html markup is incorrect. They are not really on the same unordered list. You have this code:

    <ul>
    <li><b>Insulated Power Cables (600V to 230 kV)</b>– Specially engineered and CSA certified, unarmoured easy bending and handling Ethylene Propylene Rubber insulated Power Cables requiring specific dimensions and fire ratings.</li>
    </ul>
    <ul>
    <li><b>Cable Clamping</b> – Specially dimensioned and pre-formed one piece multiple loop clamps c/w hardware for automatically establishing rotating balanced flux trefoil phase cable impedance relationships and providing easy installation without the need for any tools to secure clamps in place.</li>
    </ul>

    It should be like this:

    <ul>
    <li><b>Insulated Power Cables (600V to 230 kV)</b>– Specially engineered and CSA certified, unarmoured easy bending and handling Ethylene Propylene Rubber insulated Power Cables requiring specific dimensions and fire ratings.</li>
    <li><b>Cable Clamping</b> – Specially dimensioned and pre-formed one piece multiple loop clamps c/w hardware for automatically establishing rotating balanced flux trefoil phase cable impedance relationships and providing easy installation without the need for any tools to secure clamps in place.</li>
    </ul>

    #139832

    Ok, I’ve updated the bullet points to get rid of the extra UL’s, but still is missing the bullet points

    #139833

    nm, I didn’t update enfold 2.1 properly. Used a clean install and it shows the bullet points.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Bullet points missing after upgrade to 2.1’ is closed to new replies.