Home Forums WoodMart support forum Woocomerce font style

Woocomerce font style

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

    Hello,
    I have an issue with font style on woocommerce category pages (under products).
    Please see the picture.
    Thanks

    Attachments:
    You must be logged in to view attached files.
    #155846

    Please see the picture.

    Attachments:
    You must be logged in to view attached files.
    #155885

    Hello,

    Can you please send me the WP admin login details of your site also give the URL of that product page where the bullets not working. So I will check and give you the proper solution.

    Best Regards.

    #155988

    Hello,
    I have these issues on all shop pages (Categories and Product).
    Thanks.

    #156114

    Artem Temos
    Keymaster

    We will fix these style issues in our next theme update. Thank you for the report.

    #158754

    Bogdan Donovan
    Keymaster

    Hi,

    During investigating the following issue we have checked your site again and found that you are using the third-party plugin text editor for categories description. Since by default, user cant add lists to the Woocommerce categories, we will not add this code in theme files, but you can add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.

    .term-description > ol,
    .term-description > ul,
    .term-description-footer > ol,
    .term-description-footer > ul {
      margin-bottom: 20px;
      padding-left: 20px;
      text-align: left;
    }
    
    .term-description > ol li,
    .term-description > ul li,
    .term-description-footer > ol li,
    .term-description-footer > ul li {
        margin-bottom: 10px;
    }
    
    .term-description > ol li:last-child,
    .term-description > ul li:last-child,
    .term-description-footer > ol li:last-child,
    .term-description-footer > ul li:last-child {
          margin-bottom: 0;
        }
    
    .term-description > ol li > ul,
    .term-description > ul li > ul,
    .term-description-footer > ol li > ul,
    .term-description-footer > ul li > ul,
    .term-description > ol li > ol,
    .term-description > ul li > ol,
    .term-description-footer > ol li > ol,
    .term-description-footer > ul li > ol {
          margin-bottom: 0;
        }
    
    .term-description > ol ul,
    .term-description > ul ul,
    .term-description-footer > ol ul,
    .term-description-footer > ul ul,
    .term-description > ol ol,
    .term-description > ul ol,
    .term-description-footer > ol ol,
    .term-description-footer > ul ol {
        margin-top: 10px;
        padding-left: 20px;
    }
    
    .term-description > dl,
    .term-description-footer > dl {
      text-align: left;
    }
    
    .term-description > dl dt,
    .term-description-footer > dl dt {
        color: #2D2A2A;
        font-weight: 700; 
    }
    
    .term-description > dl dd,
    .term-description-footer > dl dd {
        margin-bottom: 20px;
    }
    
    .term-description > ul ol > li,
    .term-description-footer > ul ol > li,
    .term-description > ol > li,
    .term-description-footer > ol > li,
    .term-description > ol ol > li,
    .term-description-footer > ol ol > li {
      list-style: decimal; 
    }
    
    .term-description > ul ol > li:before,
      .term-description-footer > ul ol > li:before,
      .term-description > ol > li:before,
      .term-description-footer > ol > li:before,
      .term-description > ol ol > li:before,
      .term-description-footer > ol ol > li:before {
        content: none;
    }
    
    .term-description > ul > li,
    .term-description-footer > ul > li,
    .term-description > ul ul > li,
    .term-description-footer > ul ul > li,
    .term-description > ol ul > li,
    .term-description-footer > ol ul > li {
      position: relative;
      list-style: none; 
    }
    
      .term-description > ul > li:before,
      .term-description-footer > ul > li:before,
      .term-description > ul ul > li:before,
      .term-description-footer > ul ul > li:before,
      .term-description > ol ul > li:before,
      .term-description-footer > ol ul > li:before {
        content: "\f110";
        position: absolute;
        top: 6px;
        left: -20px;
        font-size: 8px;
        font-family: "woodmart-font"; 
    }

    Best Regards

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