Replies: 1 comment 3 replies
-
Hi Richard, I converted this issue into a discussion because this are no bugs. Let me explain. HeroesHero templates have featured image as a background and title, excerpt and button overlays the image. It depends how long your title and excerpt are. You can write a custom excerpt in the backend or limit length globally in your child's function mytheme_custom_excerpt_length( $length ) {
return 20; // Limit excerpt words amount to 20
}
add_filter( 'excerpt_length', 'mytheme_custom_excerpt_length', 999 ); However, this are just templates and you can (and should) easily override them in your child https://bootscore.me/documentation/bs-swiper/#Overriding_templates_via_theme and build your own sliders. Check this hero-fade slider https://themes.bootscore.me/bc-fashion/ for what you can do with templates. CardsSame as above. All cards have the same height and all cards have the height of the one with the longest content. So, card height depends on title and excerpt length as well. Category badgesIn gallery plugin's CSS https://github.com/crftwrk/bs-swiper-gallery/blob/main/wpt-swiper-gallery/wpt-swiper-gallery.css you will find this in line .swiper-slide a {
display: block;
width: 100%;
height: 100%;
} This affects all swipers, no matter if it's a gallery or a card/hero. To address this only to the gallery it should be changed to: .wpt-swiper-gallery .swiper-slide a {
display: block;
width: 100%;
height: 100%;
} If you want to create a PR, we can solve this quickly. |
Beta Was this translation helpful? Give feedback.
-
Hello Basti, its ofc me once again.
I have purchased dark theme (awesome!) and from mobile i have noticed that slider is a bit wired in visualizzation. its regards hero and cards.
in hero you can check here:
https://www.northwestalps.com/
on mobile its a mess. also read more button is strange. idk but you.an see your self its kinda differs a lot from desktop version.
another url https://www.northwestalps.com/2022/10/19/bootscore-swiper-gallery/
please let me know kindly if i did something wrong. but i dont think. is that depends on image size or (p) text in preview?
in cards there is a strange behavior on categories: https://www.northwestalps.com/2022/09/18/componenti-sciolti/
they are long. idk why and its pretty strange for me, but im sure into your support. Maybe some other faced this problem.
fyi im using cache enabler wich works awesome with your theme. please reccomend it. Thank you a lot.
Beta Was this translation helpful? Give feedback.
All reactions