Tagged: 

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

    I posted this earlier. The response had a closed topic and there was no way for me to respond.

    I want to move the navigation menu down and keep the logo the same size. I was given this code:

    .nav {

    position: relative;

    right: -20px;

    top: 55px;

    }

    #top .logo, .logo a {

    height: 90px;

    width: 210px;

    left: 8px;

    top: -11px;

    }

    The only thing I was able to do was to change the size of the logo. I could not move the nav menu down.

    Other questions:

    How do I remove the search magnifying glass from the menu?

    How do I change the text height, bold, etc?

    How can I remove the current page from the menu?

    Thank You

    #119166

    Hi,

    What type of header are you using?

    1.) You can remove the magnifying glass via css, please add this on your custom.css or Quick CSS

    #menu-item-search {
    display: none;
    }

    2.) You can apply the menu font styling on this selector

    .main_menu ul:first-child > li > a {
    display: block;
    text-decoration: none;
    padding: 0 13px;
    font-weight: normal;
    font-size: 12px;
    font-weight: 600;
    font-size: 20px;
    }

    3.) What do you mean by “remove the current page from the menu”?

    Regards,

    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘nav menu questions’ is closed to new replies.