Craft Theme Layout Issues

Hello,

I am currently working on a website that is using the Craft theme, and I am having a couple of issues:

  1. I would like to adjust the video banner height on mobile so that the text isn’t so close to the header (photo 1 attached)

  2. I would like to remove the extra spacing in the footer on desktop view between the menus and the copyright info (photo 2 attached)

The preview link is: https://c9697fcvatbr7ouc-65874886903.shopifypreview.com

Thanks so much!

Hi @BellesandBells

To complete your requests, please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS
  2. Paste the code provided into the Custom CSS section.
@media screen and (max-width: 768px) {
   .banner__box.content-container {
      padding: 12rem 1.5rem !important;
   }
}

.footer-block--newsletter {
   display: none !important
}

I hope it will help you!

Hi @BellesandBells

To complete your requests, please follow these steps:
Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS > Paste the code below

@media screen and (max-width: 768px) {
    .banner__box.content-container {
        padding: 12rem 1.5rem !important;
    }
}

.footer-block--newsletter {
    display: none !important
}

I hope it will help you :slightly_smiling_face:

1 Like

Thank you so much @Beae_Cass

The code for the video worked perfectly, however, the code for the footer has removed the newsletter altogether. Can you please assist?