View Full Version : Can you make the text in the navbar bigger?
Unbrok3n
Jan-10-2009, 06:18 PM
I was just curious if the text in the navbar could get bigger...and if so how...thanks!
Allen
Jan-10-2009, 06:34 PM
I was just curious if the text in the navbar could get bigger...and if so how...thanks!
Add the font size to this in your CSS
#navcontainer ul li a {
text-decoration: none;
padding: .4em 2em;
color: #fff;
background-color: ##303030;
font-size: 11pt;
}
canon_shooter
Jan-16-2009, 11:33 AM
Add the font size to this in your CSS
#navcontainer ul li a {
text-decoration: none;
padding: .4em 2em;
color: #fff;
background-color: ##303030;
font-size: 11pt;
}
Hi Allen,
I'm interested in changing the look of my navbar. I like the look of the samples (like most folks do!), and
would like to know what to do to make it right justified, and change the spacing between the links if needed. I think I can figure out from your original how to remove the background color, or at least match the background color I use which is black.
Thanks!
Allen
Jan-16-2009, 07:37 PM
Hi Allen,
I'm interested in changing the look of my navbar. I like the look of the samples (like most folks do!), and
would like to know what to do to make it right justified, and change the spacing between the links if needed. I think I can figure out from your original how to remove the background color, or at least match the background color I use which is black.
Thanks!
How about something like this?
#navcontainer {
float: right;
margin: 5px 20px 0 0; /* top right bottom left */
}
#navcontainer ul {
margin: 0;
padding: 0;
list-style-type: none;
text-align: center;
}
#navcontainer ul li {
display: inline;
}
#navcontainer ul li a {
text-decoration: none;
padding: .2em 2em; /* 2nd one spreads out buttons */
color: #fff;
background: none;
font-family: Comic Sans MS, verdana, tahoma, helvetica, arial, sans-serif;
font-size: 12pt;
}
#navcontainer ul li a:hover {
color: #ccc;
background: none;
}
vBulletin® v3.8.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.