• Resolved dazo1720

    (@dazo1720)


    Hello I would like to change the title size font of my website and the font and font size of the menu. I try to get into the code but I am really an amateur on this. could you help me out??

    https://crestedoutdoors.com/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter dazo1720

    (@dazo1720)

    How do i change font size in menu? in VERBO theme, please help!

    changing font-size in verbo\media\css\nav.css nav.header-nav ul li a worked for me.

    Thread Starter dazo1720

    (@dazo1720)

    Could you be a little more specific, I am very amateur on this topic. Thanks!

    Theme Author mythemes

    (@mythemes)

    Hi dear dazo1720,

    original Title ( in line with menu not from header ) css properties


    header hgroup h1,
    header hgroup h1 > a,
    header hgroup > a{
    color: #454545;

    font-family: Montserrat, sans-serif, Arial, serif;
    font-size: 30px;

    font-style: normal;
    font-variant: normal;
    font-weight: normal;

    line-height: 35px;
    text-transform: uppercase;
    }

    to change it you can use custom css options from our theme

    go to Admin Dashboard > Appearance > Theme Options

    here exists section “OTHERS SETTINGS”
    with field “Add custom css”

    for eample add code:


    body header hgroup h1,
    body header hgroup h1 > a,
    body header hgroup > a{
    font-size: 26px;
    }

    You can add only the properties that you want to change ( for example above it is font-size )

    About Menu:

    This change is very tricky. Need multiple changes for multiple elements.

    base change you need to do is on this code ( add it to custom css fields with your changes ):


    body nav.header-nav ul li a{
    font-family: Montserrat, sans-serif, Arial, serif;
    font-size: 13px;
    line-height: 14px;
    }
    body nav.base-nav ul.mythemes-menu ul li,
    body nav.base-nav ul.mythemes-menu ul li a{
    font-family: "Noto Sans",sans-serif;
    display: block;
    }

    but there are elements which it is pointless to write because I do not know what changes you want to do.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change font size of logo title and menu’ is closed to new replies.