Anton Largiader
Gold Member
POTN used a neat after-link image (with the arrows) whch clarified that the preceding text was a link. Some people like to style their text a lot and maybe the existence of the link can be less obvious.
Can we add that? Looks like it's pretty straightforward using the ::after CSS property. Can be the same link image that XenForo uses in the editor.
Many examples on the web of using the ::after property, but here's one: https://stackoverflow.com/questions/946403/insert-image-after-each-list-item
EDIT: Crudely:
Can we add that? Looks like it's pretty straightforward using the ::after CSS property. Can be the same link image that XenForo uses in the editor.
Many examples on the web of using the ::after property, but here's one: https://stackoverflow.com/questions/946403/insert-image-after-each-list-item
EDIT: Crudely:
But maybe there's an option or add-on for doing this without coding it youself..fop::after {
display: inline-block;
content: "";
width: 10px;
height: 10px;
background: url('ext_link.png') no-repeat;
}
...and this is our <a class="fop" href="https://bhphotovide.com"> link </a> to B&H...
Last edited: