Home Forums WoodMart support forum Background Color

Background Color

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #681797

    sevtra7
    Participant

    Hi,

    I want to change the background color and font. I’d like the background color to be transparent and the font to be black!
    How do I do this?

    See print screen.

    Sincerely,

    kad

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

    Hello,

    Please add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS. Change the code as per your requirement to change the color.

    .page-title .wd-nav-product-cat .wd-sub-menu {
        background-color: #ffffff !important;
    }
    
    /* Black font color for dropdown items */
    .page-title .wd-nav-product-cat .wd-sub-menu li a {
        color: #000 !important;
    }
    
    /* Black font on hover as well */
    .page-title .wd-nav-product-cat .wd-sub-menu li a:hover {
        color: #000 !important;
    }
    .page-title .wd-nav-product-cat .wd-sub-menu .nav-link-count {
        color: #000 !important;
    }

    Best Regards,

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