Show bullet points instead of arrows in woodmart
-
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
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
Hello
I added the code
http://prntscr.com/o6fcga
But it does not seem to be working
http://prntscr.com/o6fcjk
Please check.
Hello,
Please copy the code from the forum not from the email or provide your site admin access.
Best Regards
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
Hello,
Replace the code with this one:
body .woocommerce-product-details__short-description > ul > li {
list-style-type: disc;
}
Best Regards