Home Forums WoodMart support forum Change font color and size from category menu and submenu

Change font color and size from category menu and submenu

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #43699

    pasko
    Participant

    How to change font color and size from category menu and submenu

    #43705

    Artem Temos
    Keymaster

    Hi,

    Please, provide us a screenshot of this menu and your website link for better understanding.

    #43731

    pasko
    Participant

    How to change font size and color from menu and submenu?

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

    Bogdan Donovan
    Keymaster

    Try to add the following code snippet to the Custom CSS area in Theme Settings.

    .header-categories-nav .categories-menu-dropdown .item-level-0 > a {
    	font-size: 16px;
    	color: #111111;
    }
    
    .header-categories-nav-wrap .categories-menu-dropdown .menu-simple-dropdown ul li a {
    	font-size: 16px;
    	color: #111111;
    }

    Regards

    #43761

    pasko
    Participant

    Perfect, thanks!

    #43768

    pasko
    Participant

    Can you give me such a CSS for the “Navigation font” menu and submenu ?

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

    Artem Temos
    Keymaster

    Use this code snippet

    /* Change color of main menu */
    .main-nav .item-level-0 > a {
        color:black!important;
    }
    /* Change color and size of sub menu */
    .main-nav .menu-simple-dropdown ul li a {
        color:black!important;
        font-size:16px;
    }

    You can control the main menu font size in Theme Settings -> Typography -> Navigation.

    #43794

    pasko
    Participant

    Perfect, thanks for your prompt support!

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

The topic ‘Change font color and size from category menu and submenu’ is closed to new replies.