No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* Override | /* Override styles for the gallery box and thumb container */ | ||
.gallerybox { | |||
.gallerybox | margin: 0; | ||
padding: 0; | |||
} | } | ||
.gallerybox .thumb { | |||
.gallerybox | background-color: inherit ; /* Match parent's background */ | ||
background-color: inherit; /* | border: none ; /* Remove any border */ | ||
border: | width: 280px ; /* Match inline style */ | ||
height: 150px ; /* Match inline style */ | |||
} | |||
/* Ensure image itself doesn't add extra border or padding */ | |||
.gallerybox .thumb img { | |||
border: none ; | |||
padding: 0 ; | |||
} | } | ||
Revision as of 01:26, 20 January 2025
/* CSS placed here will be applied to all skins */
/* Override styles for the gallery box and thumb container */
.gallerybox {
margin: 0;
padding: 0;
}
.gallerybox .thumb {
background-color: inherit ; /* Match parent's background */
border: none ; /* Remove any border */
width: 280px ; /* Match inline style */
height: 150px ; /* Match inline style */
}
/* Ensure image itself doesn't add extra border or padding */
.gallerybox .thumb img {
border: none ;
padding: 0 ;
}
