PORT markup

Please, can the forced underlining cease?

<{link removed}> is not effective against the force.

I worked around the double underline pictured below by preferring a different font. I'm left with unwanted underlining.

For test purposes:

graphics/kdiagram-qt6
 

Attachments

  • 1705108100163.png
    1705108100163.png
    251.2 KB · Views: 157
Last edited:
You can use a CSS injector (such as this one) and put the following to globally disable decoration (therefore underlining) on the page, although you can edit it to be more specific if you'd like.
CSS:
* {
    text-decoration: none !important;
}
 
Thanks, I don't want to lose underlining entirely (I do want it when pointing at a link).
Pair this with the other CSS I posted. Seems to be somewhat broken though, decorations may have the wrong color.
CSS:
a:hover {
    text-decoration: underline !important;
}
Haven't tried this because I don't care, but if I did, I would probably go with this solution since it doesn't require any addons.
 
Pair this with the other CSS I posted. …

Thanks. Tested OK, I added the combination to a previously created style.



I'll be nice if The FreeBSD Forums can change, to not require the override (to work with extensions such as {link removed}).
 
Last edited:
You could try
CSS:
u tt { text-underline:none; }

What's really sad is that the
HTML:
tt
element has been obsolete for maybe 20 years.
Is text-underline a real property? I tried doing something like this (with text-decoration) and it didn't work, and this also doesn't work. I don't know why, seems like it should to me, but I'm no CSS expert.

I think it's interesting it has the tt style set to have underlining and a <u> element around it.
 
Back
Top