Hi
I do not know why but I am not able to change the backgroundcolor of ONLY the homepage of the Dawn Template.
Can someone please help?
Kind regards
Hi
I do not know why but I am not able to change the backgroundcolor of ONLY the homepage of the Dawn Template.
Can someone please help?
Kind regards
share the link.
Hello @hakomakotako ,
It’s GemPages support team and glad to support you today.
I would like to give you a recommendation to support you so kindly follow the steps below:
Open your theme.liquid theme file
Paste the below code before
{% if template == 'index' %}
{% endif %}
For example,
If you require any further information, feel free to contact me.
Best regards,
GemPages Support Team
I understand you want to remove video background on the product details page. Follow these steps to do that
Go to Shopify theme manager
Edit code of the current theme
Open file layout > theme.liquid
Add this code to body tag class=“gradient {{ request.page_type }}”
Click “Save” button,
Open assets > base.css file, add this code at the end
body.index {
background-color: red !important;
}
Try it and let me know
Thank you so much, for this detailed answer! It worked perfectly!
It means your issue is addressed, right?
Thank you again. Do you maybe also know how to change the background for only the mobile homepage? This would be insane if you know that!
Kind regards
Hello @hakomakotako ,
It is possible, you can use this code:
{% if template == 'index' %}
{% endif %}
Best regards,
GemPages Support Team