MyBB Community Forums

Full Version: Underlining links in posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys,

I'm trying to underline links on hover but only in posts. I tried editing A:hover and it shows up for all links. I only want it to show in the posts.

How do I go about doing so?

Cheers!
Add the following class in global.css;
.post_body a:hover{
text-decoration: underline;
}
(2012-07-09, 03:22 PM)Yaldaram Wrote: [ -> ]Add the following class in global.css;
.post_body a:hover{
text-decoration: underline;
}

Thank you so much!

This doesn't seem to show on the portal though. http://gw2ph.com/
That's because the portal isn't styled with .post_body.
Yeah, how do I fix that? Sorry I am not very good with CSS
Try to add the following class in global.css;
.trow1 a:hover, .trow2 a:hover{
text-decoration: underline;
}