Topic: New to PHP..I dunno how to do this..

Well, i've been trying forever, and I really don't know how, im trying to learn PHP. But what I wanted done is like, at the bottom of the forum, it says: Online: - It lists them, but it is underlined, how do I remove that? Also how do I remove it for the viewforum. All of the topics are underlined too. Any help would be greatly appreciated. Thanks.

Re: New to PHP..I dunno how to do this..

its not php, its css, if you just want to remove the underlining on all links

i think changing
#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
}
to
.pun A:link, .pun A:visited {
    TEXT-DECORATION: none
}
will work but i'm not sure, if you wanted specific links you would just need to add the specific css to that line

Re: New to PHP..I dunno how to do this..

Ok, thank you very much!

4

Re: New to PHP..I dunno how to do this..

Check, this works perfect to get all underlines away.