Loving the template so far! What's the best way you would suggest to embed a full block image carousel to the main page? Is there a particular plugin that plays nice with Hemma?
There are so many slider plugins for WordPress that you can try or, if you feel comfortable with PHP / CSS, you could try to create your own using the child theme.
Unfortunately I can't suggest any third-party plugin since we've never tested any of them.
Reporting back that Soliloquy Pro actually works really well as a plugin with Hemma. You can see it on my website: sacredsands.com. One thing though... Is there a way to add div id and class tags into the various blocks in the main page? I want to remove the padding that seems to be inherent in the main page blocks even when I use HTML.
Loving the template so far! What's the best way you would suggest to embed a full block image carousel to the main page? Is there a particular plugin that plays nice with Hemma?
Hi Keith,
There are so many slider plugins for WordPress that you can try or, if you feel comfortable with PHP / CSS, you could try to create your own using the child theme.
Unfortunately I can't suggest any third-party plugin since we've never tested any of them.
Cheers, P.
Reporting back that Soliloquy Pro actually works really well as a plugin with Hemma. You can see it on my website: sacredsands.com. One thing though... Is there a way to add div id and class tags into the various blocks in the main page? I want to remove the padding that seems to be inherent in the main page blocks even when I use HTML.
Hey Keith,
You can add some custom CSS in the Customizer, for example:
.home .site-main .block:first-of-type .container {
padding-left: 0;
padding-right: 0;
}
.home .site-main .block:first-of-type .block-text {
padding-top: 0;
padding-bottom: 0;
}
Cheers, P.
Thank you so much!