Okay
  Public Ticket #2135794
Images Carousel from main page?
Closed

Comments

  •  1
    Keith started the conversation

    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?

  •  234
    Elena replied

    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.

  •  1
    Keith replied

    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.

  •  234
    Elena replied

    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.


  •  1
    Keith replied

    Thank you so much!