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 -

how to prompt save As Box in Excel Interlop c# MVC 4 -

xslt 1.0 - How to access or retrieve mets content of an item from another item? -