Ref links question

In this board you can talk about general questions about phpMyFAQ

Moderator: Thorsten

Post Reply
gaz316
Posts: 14
Joined: Fri May 30, 2003 3:32 pm

Ref links question

Post by gaz316 »

Hi this is the text for my links within the FAQ, how do i make this links bold as well?

a {
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
color: #ffffff;
text-decoration : none;
}

a:hover {
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
color: #ffffff;
text-decoration : underline;

Thankyou in advance
Thorsten
Posts: 15568
Joined: Tue Sep 25, 2001 11:14 am
Location: #phpmyfaq
Contact:

Post by Thorsten »

Hi,

Code: Select all

a {
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
color: #ffffff;
text-decoration : none;
font-weight: bold;
}

a:hover {
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
color: #ffffff;
text-decoration : underline; 
font-weight: bold;
}
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
Post Reply