#Any way to modify the thumbnails appearance...?
1 messages · Page 1 of 1 (latest)
Never mind, I just realized you meant the padding around the text/images. You can remove it with the following css:
figure[typeof="mw:File/Thumb"] img {
margin: 0 !important;
}
figure[typeof="mw:File/Thumb"] figcaption {
padding: 0;
/* You can also customize the caption's font in here */
}
You'll probably also want to add some padding on the left of the caption since it looks pretty cramped otherwise
Hello. Been out of the internet for a while. Just arrived. Thanks, I'm going to paste it.
tried to dig into the 'inspect' option, but can't find nothing useful.
Try adding this rule as well:
figure[typeof="mw:File/Thumb"] video {
margin: 0 !important;
}