1 (edited by Wernham Hogg 2009-05-31 21:34)

Topic: Underlined Topics/Categories/Forums

Hi,

I'm not very good at coding, so i would like some help with this if possible:

The forum-style im using has underlined Topics, Categories and Forums (like the style on here). So if i start a topic, its underlined in the menu.

I would like to remove this.

Is it possible? And if so, how?

Thanks!

Re: Underlined Topics/Categories/Forums

I don't understand what exactly you want. Please, post a screenshot.

Re: Underlined Topics/Categories/Forums

Parpalak wrote:

I don't understand what exactly you want. Please, post a screenshot.

Hi, sure.

http://img46.imageshack.us/img46/9068/punbb.jpg


All the topics of the forums are underlined. Is there a way to make it so they arent?


Thanks!

Re: Underlined Topics/Categories/Forums

You have to add the following code to your CSS file:

.brd .main-content .main-item .hn a {
   text-decoration: none;
}

Re: Underlined Topics/Categories/Forums

Parpalak wrote:

You have to add the following code to your CSS file:

.brd .main-content .main-item .hn a {
   text-decoration: none;
}

Great, thanks!

Re: Underlined Topics/Categories/Forums

You're welcome smile

Re: Underlined Topics/Categories/Forums

Worked perfect.


Is there another line i can add to make the topic underlined again when i draw the mouse over it?

Re: Underlined Topics/Categories/Forums

Sure.

.brd .main-content .main-item .hn a:hover {
   text-decoration: underline;
}

Re: Underlined Topics/Categories/Forums

Thanks!