1 (edited by tryadmin 2007-05-22 17:37)

Topic: .css underline every link in your entire forum

How do I make sure all links are underlined? With the style Im using now, I got them all to work except when reading a post, next to the member name the links that say "email" or "website" as well as in the signature lines. I cant get these to underline!

This is what I have now:

/****************************************************************/
/* 3. LINKS */
/****************************************************************/

/* 3.1 Remove underlining for main menu, post header links, post links and vertical menus */
.pun div.tclcon a:link, .pun div.tclcon a:visited { text-decoration: underline } hover {font-color: #669999;}
    .pun div#brdfooter a:link, .pun div#brdfooter a:visited { text-decoration: underline } hover {font-color: #669999;}


#brdmenu A:link, #brdmenu A:visited, .blockpost DT A:link, .blockpost DT A:visited, .blockpost H2 A:link,
.blockpost H2 A:visited, .postlink A:link, .postlink A:visited, .postfootright A:link, .postfootright A:visited,
.blockmenu A:link, .blockmenu A:visited {
    TEXT-DECORATION: underline
}

/* 3.2 Underline on hover for links in headers and main menu */

#brdmenu .blockpost H2 A:hover {font-weight: bold; TEXT-DECORATION: underline}
#brdmenu A:hover {font-weight: bold;color: #093F7B;}
1,000 Free Ad Impressions On My punBB Forum

Re: .css underline every link in your entire forum

Well, your code is rather broken but you can do it easier by just replacing that code with:

.pun a:link, .pun a:visited, .pun a:hover {
    text-decoration: underline
}