How do I vertically enlarge the navigation bar?

Hi all,

I would like to make my navigation bigger (vertically) as the current one looks to small for my liking. If any of you could help me out with this, it would be much appreciated.I have a beginners understanding of html and css but I believe I could figure it out with the needed code and instructions. Thanks all, much appreciated!  

I believe this is the part that's going to be affecte->

#nav-wrap {

position: fixed;

top: 0;

left: 0;

border-top: 3px solid #000B5C; /* #ActiveSectionColor; this one controls the top border old #199ad0; old nav color */

background: rgb(29,62,143); /* #MenuBarColor; Hex code: #1d3e8f */

background: rgba(29,62,143,1); /* #MenuBarColor; This line controls opacity. #1d3e8f, */

z-index: 999;

}

 

#nav-wrap .container {

clear: both;

overflow: hidden;

position: relative;

}

 

#nav-wrap .container ul {

list-style: none;

overflow: hidden;

float: right;

}

 

#nav-wrap .container ul li {

list-style: none;

float: left;

margin-right: 17px;

text-transform: uppercase;

}

 

#nav-wrap .container ul span:last-child li,

#nav-wrap .container ul > li:last-child {

background: none;

}

 

#nav-wrap .container ul li a {

float: left;

display: block;

font-family: 'Lato', sans-serif;

color: #fff;

padding: 14px 12px;

border: 0;

outline: 0;

list-style-type: none;

font-size: 13px;

font-weight: bold;

}

 

#nav-wrap .container ul li#active a,

#nav-wrap .container ul li a:hover {

color: #fff; /* April 2017 */

background: #000B5C; /* #ActiveSectionColor; this one controls the rest. old #199ad0; */

border: 0;

}

639 Views
Message 1 of 2
Report
1 REPLY 1
Square

What site was this code on, @Needhelpblast? I think it might help our Community members to see the site, too.

612 Views
Message 3 of 2
Report
This thread has been archived and locked. Please start a new thread if you would like to continue the conversation.
grz-custom-initialLetter