2017-02-12 1 views

Antwort

0

In Ihrem style.css Datei ändern, um die Polsterung aus dieser

#main-navigation .menu li a { 
font-size: 13px; 
font-weight: bold; 
font-family: Arial, Helvetica, sans-serif; 
color: #383838; 
padding: 11px 24px 0 24px; 
margin: 0 0; 
min-height: 27px; 
top: 0; 
display: block; 
border-right: 1px solid #E1E1E1; 
text-align: center; 
text-shadow: 0 1px 1px white; 
} 

dazu

#main-navigation .menu li a { 
font-size: 13px; 
font-weight: bold; 
font-family: Arial, Helvetica, sans-serif; 
color: #383838; 
padding: 11px 13px 0 13px; 
margin: 0 0; 
min-height: 27px; 
top: 0; 
display: block; 
border-right: 1px solid #E1E1E1; 
text-align: center; 
text-shadow: 0 1px 1px white; 
} 
Verwandte Themen