Viewing 6 replies - 1 through 6 (of 6 total)
  • Not without seeing your site.

    Thread Starter citi11411

    (@citi11411)

    Lyfemarketing.com is my site. Sorry.

    Can you be more specific about what you want to change?

    Thread Starter citi11411

    (@citi11411)

    The nav bar that contain my menu and logo is black. IMO it is to larger vertically. I would like to reduce the height. Reduce the height of the whole nav bar.

    Are you modifying the style.css file? Those changes will be lost when the theme is updated. You should be using Custom CSS or a child theme.

    You also have a syntax error in the CSS you’ve added – a missing closing bracket here:

    .navbar .nav li.dropdown.open > .dropdown-toggle,
    .navbar .nav li.dropdown.active > .dropdown-toggle,
    .navbar .nav li.dropdown.open.active > .dropdown-toggle {
      background-color: #e5e5e5;
      color: #349cd1;
    
    /*make the menu sub-menu items drop down on mouse hover */

    As to the fix, try this CSS:

    header.tc-header {
        border-bottom: 0 none;
        height: 100px;
    }
    
    .navbar .navbar-inner {
       margin-top: 0;
    }

    You’ll need to make the logo smaller.

    Thread Starter citi11411

    (@citi11411)

    Thank you. It works.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Change height of nav bar’ is closed to new replies.