#Any way to modify the thumbnails appearance...?

1 messages · Page 1 of 1 (latest)

sand portal
#

Assuming you're referring to the thick border on the bottom, you can remove it with the following in Timeless.css (I think that's the only skin that looks like this)

figure[typeof="mw:File/Thumb"] figcaption {
  border-bottom-width: 1px;
}
#

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

glad tundra
#

Hello. Been out of the internet for a while. Just arrived. Thanks, I'm going to paste it.

glad tundra
#

tried to dig into the 'inspect' option, but can't find nothing useful.

sand portal
#

Try adding this rule as well:

figure[typeof="mw:File/Thumb"] video {
  margin: 0 !important;
}