Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* CSS placed here will be applied to all skins */
.card-carousel {
display: flex;
overflow-x: auto;
gap: 1rem;
padding: 1rem;
}
.card-carousel::-webkit-scrollbar {
height: 6px;
}
.card-carousel::-webkit-scrollbar-thumb {
background: #999;
border-radius: 3px;
}
.card {
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem; /* or adjust spacing between elements */
border: 1px solid #ccc;
border-radius: 6px;
overflow: hidden;
background-color: #fff;
width: 200px; /* or your desired width */
}
.image-wrapper {
padding: 0;
margin: 0;
line-height: 0; /* removes spacing from inline image rendering */
}
.image-wrapper img {
max-width: 100%;
height: auto;
display: block;
}
.card-description {
font-size: 0.8em;
color: #444;
margin-top: 0.5rem;
text-align: center;
white-space: normal;
overflow-wrap: break-word;
word-wrap: break-word;
padding: 0 0.5rem;
max-width: 100%;
box-sizing: border-box;
/* These are likely causing the scroll — let's explicitly unset them */
height: auto; /* Allow height to grow */
overflow: visible; /* Remove scrollbars */
max-height: none; /* Allow full expansion */
}
.no-display {
display: none;
}