Home Forums WoodMart support forum Website Support

Website Support

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #281862

    chaw_7
    Participant

    Hello, I have a few issues that requires your assistance, and are listed below.

    1. I would like to change the font color for one of the nav menu categories.

    2. I have placed the following code in custom CSS to hide the sale percentage badge which works fine within a page created with tags but in the home page the badge is still present on the same product.(images a&b)

    .woocommerce span.onsale{
    display:none;
    }

    3. I installed a plugin a while ago called shortcodes Ultimate to turn bullet points into green ticks and the spacing was normal. Recently I am getting these padding/margin which I have not added to the code (image c&d).

    Thank you!

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

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    1) Please try adding the following Custom CSS in the Custom CSS for Desktop area under Theme Settings >> Custom CSS.

    .whb-color-dark .navigation-style-default .item-level-0>a {
        color: green;
    }

    2) Please try adding the following Custom CSS for That.

    span.onsale.product-label {
        display: none;
    }

    3) The paddings are coming from the plugin shortcode not from our theme.

    Screenshot for Clarification: https://prnt.sc/11bpqsk

    Regards.
    Xtemos Studios

    #282258

    chaw_7
    Participant

    Hello, thank you for the reply. 2) is solved, 3) I shall write to the author about it.

    1) Maybe I didn’t explain it clear enough, what code should I add if I only want one of the categories instead of all nav menu categories.

    4) I was trying to change the font color of discounted price to red but was not able to find the right css on the google.

    Thank you!

    #282333

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    You are Most Welcome.

    1) If you want to change the color of only one item then try adding the following Custom CSS.

    li#menu-item-13589 .woodmart-nav-link {
        color: red;
    }

    4) Please try adding the following Custom CSS in the Global Custom CSS area under Theme Settings >> Custom CSS.

    body .price ins .amount {
        color: red;
    }

    Regards.
    Xtemos Studios

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