Greetings,
I have noticed that the spacing between the links in my navigation header are unevenly spaced. I looked at the CSS and did not see any margin or padding issues. Please assist.
Here is the site: http://www.core4innovative.com
Greetings,
I have noticed that the spacing between the links in my navigation header are unevenly spaced. I looked at the CSS and did not see any margin or padding issues. Please assist.
Here is the site: http://www.core4innovative.com
Hey,
open up style.css and search for following code:
.nav li a{
display:block;
float:left;
padding:6px 5px; /*padding was modified from 6px 10px*/
width:70px; /*width was modified from 100px*/
border: none;
text-decoration: none;
line-height: 18px;
outline: none;
}
Remove the width attribute and adjust the margin/padding between the menu items as you like.
This is interesting. Did it work? i will try this as well! thank God i searched for this before starting a new post.
Yes it should work. In your case the code in style.css looks like:
#top .nav a{
display:block;
float:left;
line-height:18px;
outline:medium none;
padding:2px 10px;
text-decoration:none;
width:95px;
min-height: 35px;
}
Remove the width attribute and adjust the margin/padding between the menu items as you like.
You must log in to post.