Viewing 2 replies - 1 through 2 (of 2 total)
  • in your CSS try using

    list-style: inside none disc;

    Thread Starter varina

    (@varina)

    Hi @juggledad,

    Thank you for your suggestion.
    I tried copying and pasting your code to a few places with

    ul,
    ol {
    list-style: none;

    to

    ul,
    ol {
    list-style: inside none disc;

    but there wasn’t any changes.

    I tried changing the code to square/ disc at the “ul, ol list style” and my bulleted list appeared at my product description. However, bullets also started appearing above my menu and social sharing icons :/

    Somehow the only section able to let me see the changes above is this section on my css code shown below. I tried changing the “ul, ol list style” at other sections but they seem to have no effect..

    /* =SUPERCRIPT AND SUBSCRIPT
    ———————————————– */
    sup, sub {
    font-size: 10px;
    height: 0;
    line-height: 1;
    position: relative;
    vertical-align: baseline;
    }
    sup {
    bottom: 1ex;
    }
    sub {
    top: .5ex;
    }

    dl {
    margin-bottom: 24px;
    font-size: 16px;
    }
    dt {
    font-weight: bold;
    margin-bottom: 5px;
    }
    dd {
    margin-bottom: 24px;
    }

    ul,
    ol {
    list-style: none;
    }

    ol {
    list-style: decimal;
    }

    li > ul,
    li > ol {
    margin: 0 0 0 10px;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to make bulleted list appear on my product description?’ is closed to new replies.