Hi! I was wondering how to auto resize peekaboo item in eBook cover size like the example and aligned by 7 per line in desktop mode and 3 per line in mobile mode
How do i set Peekaboo to scale like an ebook cover?
(2 posts) (2 voices)-
Posted 8 months ago
-
Set the global width basis to 14% (100 / 7) to get 7 items per row, leave the individual Item Box width basis blank.
The default for the mobile presentation is one item per row. To have it convert to 3 items per row just add this rule to your style sheet:
@media only screen and (min-width: 0px) and (max-width: 768px) {
.p7PKB .pkb-item {
flex-basis: 33% !important;
}
}Posted 8 months ago
Reply
You must log in to post.