• Hi,

    The forum for this theme is not very active so am posting my query here.

    The CSS code for increasing the font size of the menu is not working. If I change 14px to 18px, etc. nothing works. Can anyone help?

    /*Menu size and menu fonts (bold,etc), and menu color*/
    .main-navigation ul li a{
    color: black;
    font-size:14px;
    }
    .main-navigation ul li a:hover{
    color: black;
    }

    I would also like to know the CSS code for removing the theme name at the bottom.

    Thanks

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello
    Try using this one

    .main-navigation .menu ul li a {
        font-size: 18px!important;
    }

    And for removing the theme name use this

    .site-copyright a {
        display: none;
    }

    but i recommend removing it from theme options footer copyright text

    Hi @mjaitly123

    As far as I can see in my dev tools, the menu font size is set to 12px.

    To change the font size of the menu items try this:

    .main-navigation .menu ul>li>a {
        font-size: 18px;
    }

    for the drop-down menu add the following line:

    .main-navigation .menu ul>li .link-icon-wrapper a {
        font-size: 18px;
    }

    To delete theme name do the following:

    .site-info {
         display: none;
    }

    Then to display “PRIVACY POLICY
    TERMS & CONDITIONS” to the left do the following:

    .footer-menu {
      display: contents;
    }

    If you need more help let me know,

    Thread Starter mjaitly123

    (@mjaitly123)

    Thanks, everyone. It worked!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Font Size for menu’ is closed to new replies.