inherit
155757
0
Sept 12, 2024 13:56:00 GMT -8
Rat Boy
252
June 2010
ratboygl
|
Post by Rat Boy on Sept 15, 2015 13:58:56 GMT -8
I am trying to get hyperlinks that are in Posts or Private Messages only to be underlined.
I have this working for Posts, but it doesn't seem to want to work in private messages.
Here is the code I have at the end of my stylesheet. Any ideas?
.posts .post .message a { text-decoration: underline !important; }
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,849
January 2015
msg
|
Post by Lynx on Sept 15, 2015 14:51:08 GMT -8
Try adding this, Rat Boy (add it under the code you posted above): .message .messages a {text-decoration: underline; }
Add the !important flag if needed. Always try without the flag first. If it works without the flag, then you could run into issues later on if you had used the flag where it wasn't needed.
|
|
inherit
155757
0
Sept 12, 2024 13:56:00 GMT -8
Rat Boy
252
June 2010
ratboygl
|
Post by Rat Boy on Sept 15, 2015 15:00:39 GMT -8
Still won't work, either way.
Unless it only works on new messages going forward?
|
|
inherit
155757
0
Sept 12, 2024 13:56:00 GMT -8
Rat Boy
252
June 2010
ratboygl
|
Post by Rat Boy on Sept 15, 2015 15:03:29 GMT -8
What is really odd is I dont see any other codes tied to .message having to do with A tags.
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,849
January 2015
msg
|
Post by Lynx on Sept 15, 2015 15:03:32 GMT -8
I've got about half a dozen things going on right now, Rat Boy - but I will look into this as quickly as I can ... doing this reply so you don't think I've "abandoned" you.
|
|
inherit
155757
0
Sept 12, 2024 13:56:00 GMT -8
Rat Boy
252
June 2010
ratboygl
|
Post by Rat Boy on Sept 15, 2015 15:13:07 GMT -8
I've got about half a dozen things going on right now, Rat Boy - but I will look into this as quickly as I can ... doing this reply so you don't think I've "abandoned" you. No worries. You and N A T have been huge helps.
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,849
January 2015
msg
|
Post by Lynx on Sept 15, 2015 15:37:56 GMT -8
Okay. Remove my previous one and please try this. If this doesn't do it, might want to ask in support what the classes are that control it. .message.item a, .message.item.even a {text-decoration: underline; }
Again, try without the flag first. If no go, try with the flag. If still no go, I'd suggest asking in support - 'cause I've no idea after this.
|
|
inherit
155757
0
Sept 12, 2024 13:56:00 GMT -8
Rat Boy
252
June 2010
ratboygl
|
Post by Rat Boy on Sept 15, 2015 15:54:00 GMT -8
Okay. Remove my previous one and please try this. If this doesn't do it, might want to ask in support what the classes are that control it. .message.item a, .message.item.even a {text-decoration: underline; }
Again, try without the flag first. If no go, try with the flag. If still no go, I'd suggest asking in support - 'cause I've no idea after this. Genius! I also added this: .message.item a:hover, .message.item.even a:hover {text-decoration: underline !important; } But this one for the hover would not work without the important flag. Thanks again!!
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,849
January 2015
msg
|
Post by Lynx on Sept 15, 2015 16:24:17 GMT -8
Awesome! Glad you got it to work, Rat Boy!
|
|