PDA

View Full Version : Another Font Question


Learningthelight
Nov-02-2007, 11:24 AM
My font on my page is just a basic arial.

How can I change my button font to somthing else?

Here is my site
http://www.picturesbykim.smugmug.com/#null[url]

Allen
Nov-02-2007, 01:59 PM
My font on my page is just a basic arial.

How can I change my button font to somthing else?

Here is my site
http://www.picturesbykim.smugmug.com/#null[url]
Try adding in a font type.

.menu ul li a,
.menu ul li a:visited {
display: block;
font-size: 1em; /* main buttons */
color: #fff; /* main buttons text non-hover*/
text-decoration:none;
font-family: Comic Sans MS, verdana;
text-align: center; /* centers text in buttons */
width: 110px; /* main box width */
height: 20px; /* main box height */
border: 1px solid red; /* start your design with borders on, easier to position DD's & FO's */
border-width: 1px 1px 1px 1px;
background: #484848; /* main button color */
padding-left: 0px;
line-height: 20px; /* positions text up/down in box */
}

Learningthelight
Nov-02-2007, 09:47 PM
Thanks again Allen!