ul data-style not working on woocommerce category descriptio

eCommerce WordPress theme to create online shop with WooCommerce support
GK User
Mon Aug 17, 2015 2:25 pm
Hi,
I've been using <ul data-style="style2"> and the other styles throughout the site and it works great except in the woocommerce category description where the styles don't show up.

I've checked the code and everything seems to be in place.

Here is an example of a woocommerce category where it doesn't work: http://75.126.207.47/product-category/p ... ochargers/

and here's an example of a normal page where it works: http://75.126.207.47/about-us/

I would really appreciate your help
User avatar
Senior Boarder

GK User
Mon Aug 17, 2015 8:03 pm
Hi,

Try to add the following code into the theme’s css/override.css file (make sure to enable the “Use the override.css file” option in Template options > Advanced in the WordPress backend)
Code: Select all
.term-description ul li {
   line-height: 2em!important;
   list-style: none;
   overflow: inherit;
   padding: 2px 0 2px 32px;
   position: relative;
}

.term-description ul li:before {
   color: #111;
    content: "\f111";
   font-family: FontAwesome;
   font-size: 6px;
   left: 0;
   position: absolute;
   top: 3px;
}
.term-description ul[data-style="style2"] li:before {
   color: #b06339;
   content: "\f14a";
   font-size: 13px;
}
.term-description ul[data-style="style4"] li:before {
   color: #b06339;
   content: "\f0a9";
   font-size: 13px;
}
User avatar
Moderator


cron