1

Topic: Links Underlining

Hi all,

How to remove ALL link's underlinings in the whole forum except on hover? Exactly like the navbar menu on top.

فهد

Re: Links Underlining

Replace this in your stylesheet(s):

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

/* 3.1 Remove underlining for main menu, post header links, post links and vertical menus */

#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: none
}

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

#brdmenu A:hover, .blockpost H2 A:hover {TEXT-DECORATION: underline}

with:

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

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

.pun a:hover {
   text-decoration: underline
}

3

Re: Links Underlining

It worked smile
Thank you CodeXP V.much
I need to get use to those .pun things

فهد

Re: Links Underlining

You don't actually need to prefix with .pun , but it's a good idea to do so if you ever plan to integrate the forum into another layout.