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 */
<style>
.carousel-container {
display: flex;
overflow-x: auto;
gap: 1rem;
padding: 1rem 0;
}
.card {
flex: 0 0 auto;
width: 200px;
border: 1px solid #ccc;
padding: 0.5rem;
border-radius: 8px;
background: #f9f9f9;
}
.card-image {
text-align: center;
}
.card-title {
font-weight: bold;
margin-top: 0.5rem;
}
.card-snippet {
font-size: 0.9em;
color: #444;
}
</style>