Home Forums WoodMart support forum Show bullet points instead of arrows in woodmart

Show bullet points instead of arrows in woodmart

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #129808

    sanchitgoyal
    Participant

    Hello

    In the woodmart theme when I add bullet points in summary there are shown as “arrow”. How can I change the same to bullets? Thanks.

    http://prntscr.com/o5xbem

    #129818

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body .woocommerce-product-details__short-description > ul {
    	padding-left: 20px;
    }
    
    body .woocommerce-product-details__short-description > ul > li {
        list-style-type: circle;
    }
    body .woocommerce-product-details__short-description > ul > li:before {
        content:"";
    }

    Best Regards

    #129977

    sanchitgoyal
    Participant

    Hello

    I added the code

    http://prntscr.com/o6fcga

    But it does not seem to be working

    http://prntscr.com/o6fcjk

    Please check.

    #129982

    Hello,

    Please copy the code from the forum not from the email or provide your site admin access.

    Best Regards

    #130160

    sanchitgoyal
    Participant

    Hello

    The code is working when pasted from the website. However it shows circle.

    http://prntscr.com/o6vepy

    Is it possible to show solid bullet like-

    http://prntscr.com/o6vf8l

    #130168

    Hello,

    Replace the code with this one:

    body .woocommerce-product-details__short-description > ul > li {
        list-style-type: disc;
    }

    Best Regards

Viewing 6 posts - 1 through 6 (of 6 total)