HTML Code Error on my site

Hi, I have edited the website code to embed a link on to my shopify homepage banner. While the link is working on my homepage banner (PC version), there is an error in the theme’s code for the mobile version. I am not sure what else to do or how to fix it. Can anyone assist me with this?

Yes, please! I am not certain if it is conflicting with the backend of the PC site as well.

Hello @kinicakez
Thank you for submitting your query to the Shopify community. I’d be happy to assist you. Could you please provide the store URL and password (if it’s password-protected) so I can review and get back to you with an update?

Yes.

this is the URL to the homepage & a screenshot of the banner:

https://honeyfactoryco.com/

When you’re editing your HTML code you need to balance the opening and closing tags. Say, for each

there must be a

In your code you have an extra closing before in slideshow section.

When browser sees this, it tries to balance the tag pairs as it sees fit, which is not always what you want.

There is also an empty div


    
    

which has top padding – this is the reason (one of the reasons) you have empty space below your image on mobile. Either delete this one, or remove the style property.

Thank you Tim for your help and expertise!