css - Adjust Padding on Navigation Border - Wordpress -


i'm trying tighten border under navigation menu. css code have:

css:

li.current_page_item {   border-top: 0;   border-bottom: 3px;   border-style:solid;   line-height: 0;   border-bottom-color:green; } 

my website http://www.verbatimagency.com

try this:

li.current_page_item {   border-top: 0;   border-bottom: 2px;   border-style:solid;   line-height: 0;   border-bottom-color:green;   line-height: 0px;   height: 0px;   padding-bottom: 10px; }  li.current_page_item {   line-height: 0px;   padding-bottom: 0;   height: 0; } 

it padding-bottom on <a> tag. see corrected preview:

you may need adjust accordingly.


Comments

Popular posts from this blog

c# - Binding a comma separated list to a List<int> in asp.net web api -

Delphi 7 and decode UTF-8 base64 -

html - Is there any way to exclude a single element from the style? (Bootstrap) -