Home Forums Pro Themes Graduate Pro Menu Bar and LogIn Bar Question

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #67887
    MrStocks
    Participant

    Hi!

    How can we change the font-size and font-family of the menu bar?

    and..

    How can we change the color of the Login Bar on the top of the GraduatePro website and remove the grey lines? Also change the login and register color?

    Really appreciate the support!

    #67892
    wensolutions
    Keymaster

    Hello @urbanestocks,

    Can you post your site URL so that we can provide the precise fix on this?

    Thank you 🙂 .

    Best Regards!!

    #67897
    MrStocks
    Participant
    #67898
    wensolutions
    Keymaster

    Hello @urbanestocks,

    Your query has been answered below:

    To change the font size of the menu use below given CSS.

    .main-navigation ul li a {
        font-size: 17px;  
    }

    To change the font family of the menu bar use below given CSS.

    body.body-font-5 .main-navigation .container ul li a {
        font-family: 'roboto', sans-serif;
    }

    To change the color of the login bar use below given CSS.

    #top-bar ul.menu {
        background-color: #7f4600e0;
    }

    To remove the grey line use below given CSS.

    #top-bar ul.menu li a {
        border-right: none;  
    }

    In above custom CSS change the color code and adjust the px as per your requirement.

    Also, place all above custom CSS in Admin Panel > Appearance > Customize > Additional CSS.

    Hope this helps.

    Best Regards!!

    #67960
    MrStocks
    Participant

    Thank you so much! Is there a way to change the color of the whole top bar to black? The CSS only changed the part where the log in and register form is.

    Also, is there a way to change the color of the text (log in and register) to white as well?

    #67961
    wensolutions
    Keymaster

    Hello @urbanestocks,

    To change whole top bar to black use below given CSS.

    #top-bar {
        background-color: #000;
    }
    
    #top-bar ul.menu {
        background-color: #000 !important;
     border-left: none;
        border-right: none;
    }

    Now to change the color of the text of login and register use below given CSS.

    #top-bar ul.menu li a {
        color: #fff;
    }

    Hope this helps.

    Best Regards!!

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.