Hi,
Have tried to find where/how to center the text in the main menu. All of mine are aligned left, not center.
http://postimage.org/image/2ziv9j43o/
Can you tell me which template to edit, and where?
Thanks
Hi,
Have tried to find where/how to center the text in the main menu. All of mine are aligned left, not center.
http://postimage.org/image/2ziv9j43o/
Can you tell me which template to edit, and where?
Thanks
Replace following css code in style.css:
#top .nav a{
display:block;
float:left;
line-height:18px;
outline:medium none;
padding:2px 10px;
text-decoration:none;
width:95px;
min-height: 35px;
}
with.
#top .nav a{
display:block;
text-align:center;
line-height:18px;
outline:medium none;
padding:2px 10px;
text-decoration:none;
width:95px;
min-height: 35px;
}Very Nice. Thanks!
You must log in to post.