Sunka Well-known member Jan 2, 2018 #1 What to add in extra.less to underline links in posts only? Thanks
Emre Well-known member Jan 2, 2018 #2 Appearance - Styles - Default style - Style properties - Page Setup result: Upvote 0 Downvote
Sunka Well-known member Jan 2, 2018 #3 Sunka said: in posts only Click to expand... just in post Upvote 0 Downvote
Mr Lucky Well-known member Jan 2, 2018 #4 I use this: CSS: .message-userContent a {color:#AF3F00 !important; font-weight:700; } .message-userContent a:hover {color:#C30000 !important; text-decoration:none !important } I can't remember now whether you actually need the !important here or not) Upvote 0 Downvote
I use this: CSS: .message-userContent a {color:#AF3F00 !important; font-weight:700; } .message-userContent a:hover {color:#C30000 !important; text-decoration:none !important } I can't remember now whether you actually need the !important here or not)
maszd Well-known member Jan 4, 2018 #5 iam use this Code: a.link.link--internal {text-decoration:underline;} a.link.link--external {text-decoration:underline;} Upvote 0 Downvote
iam use this Code: a.link.link--internal {text-decoration:underline;} a.link.link--external {text-decoration:underline;}
otto Well-known member Jul 31, 2021 #6 I made it this way: combine the hints from above CSS: /* links underline in messages only */ .message-userContent a.link.link--internal {text-decoration:underline;} .message-userContent a.link.link--external {text-decoration:underline;} This way, I have no underline at signatures eg. Works with Xenforo 2.2.6 PL2 Upvote 0 Downvote
I made it this way: combine the hints from above CSS: /* links underline in messages only */ .message-userContent a.link.link--internal {text-decoration:underline;} .message-userContent a.link.link--external {text-decoration:underline;} This way, I have no underline at signatures eg. Works with Xenforo 2.2.6 PL2