Remove underline from image links
This commit is contained in:
parent
950903c938
commit
37156c79ad
@ -584,4 +584,9 @@
|
||||
|
||||
};
|
||||
|
||||
})(jQuery);
|
||||
// Remove `border-bottom` from all `<a>` elements that also contain an `<img>`
|
||||
document.querySelectorAll("a > img").forEach(
|
||||
imgEl => { imgEl.parentElement.style.borderBottom = "none" }
|
||||
);
|
||||
|
||||
})(jQuery);
|
||||
|
Loading…
Reference in New Issue
Block a user