Is there a good way with CSS to create a 1-2px border box around images within posts/PMs? Or at least a drop shaddow?
A lot of screenshots are white background on white backgrounds and sometimes its hard to tell where the image ends and inline text begins.
Anyone?
Stranik
(Evgeny)
16 maart 2019 om 10:05
2
You can try to add css:
.topic-body img, .lightbox-wrapper .lightbox {
box-shadow: 0 0 10px 3px rgba(221, 221, 221, 1);
}
Or add a border
border: 1px solid #e9e9e9;
4 likes
You could help to answer your own question by right-clicking on an image and selecting ‘inspect’ or ‘inspect element’. That would lead you towards @Stranik ’s answer above.
2 likes
I did, but I didn’t find it. But now with that answer and the elements to look for I’ll give it another look. The newbie blues.
Thanks gents!
3 likes
Cozdabuch:
The newbie blues.
Ha. Learning is never ending
2 likes