Prosilver Forum List Hover

For support and discussion related to templates, themes, and imagesets in phpBB 3.2.
Post Reply
User avatar
Jodi-86
Registered User
Posts: 100
Joined: Thu Nov 30, 2017 10:04 pm

Prosilver Forum List Hover

Post by Jodi-86 »

I've always wondered why if you hover over a topic it underlines, but when you hover over a forum it doesn't ?

It appears in Links CSS that line 63 adds the underline action, but then line 88 cancels it.

Links CSS - line 63:

Code: Select all

a.forumtitle:hover {
	text-decoration: underline;
}
Links CSS - line 88:

Code: Select all

.row-item a:hover {
	text-decoration: none
}
User avatar
PlanetStyles.net
Former Team Member
Posts: 4809
Joined: Wed Nov 04, 2009 11:16 pm
Location: Way up in the sky close to the stars
Name: Christian
Contact:

Re: Prosilver Forum List Hover

Post by PlanetStyles.net »

Interesting find, I'd never noticed this before.

You could force forum titles to underline by adding !important after underline and before ; :)
User avatar
Jodi-86
Registered User
Posts: 100
Joined: Thu Nov 30, 2017 10:04 pm

Re: Prosilver Forum List Hover

Post by Jodi-86 »

I only noticed when changing hover colours, for a while i assumed it was something i'd done :lol:

The fix i used was on Links CSS the next line down, line 93, i added .row-item .forumtitle:hover, above .row-item .topictitle:hover,

Links CSS - line 93:

Code: Select all

.row-item .topictitle:hover,
.row-item .subforum:hover,
.row-item .username:hover,
.row-item .username-coloured:hover {
	text-decoration: underline;
}
:)
User avatar
Hanakin
Front-End Dev Team Lead
Front-End Dev Team Lead
Posts: 1065
Joined: Wed Dec 30, 2009 8:14 am
Name: Michael Miday
Contact:

Re: Prosilver Forum List Hover

Post by Hanakin »

Code: Select all

dl.row-item dt a:hover {
	text-decoration: underline;
}
needs added
Post Reply

Return to “[3.2.x] Styles Support & Discussion”