I really need some help with the header of my website.
- Product page only, I want the icons (top right) to be in burgendy (matching the colour of the navigation on the left)
- The header is transparent, so I would like the content have more padding at the top, at the moment it sits below the heading and the logo.
- Globally, I would like the icons in the header to align with the navigation.
URL: jadeo-2.myshopify.com
PWD: Lisbon2026
Please add the code below to theme.liquid file under <head> then save file and check
{%- if template.name contains 'product' -%}
<style>
.header__icon--menu .icon,
.header__icon .svg-wrapper {
color: #863425 !important;
}
.product__media-wrapper { margin-top: 120px; }
header-drawer,
.header__icons {
top: -18px;
position: relative;
}
</style>
{%- endif -%}
Best regards,
Dan from Ryviu: Product Reviews App
Amazing thank you!
The last thing was to align the icons and the navigation, both mobile and desktop:
Please update the code to this and check again
{%- if template.name contains 'product' -%}
<style>
.header__icon--menu .icon,
.header__icon .svg-wrapper {
color: #863425 !important;
}
.product__media-wrapper { margin-top: 120px; }
header-drawer,
.header__icons {
top: -18px;
position: relative;
}
</style>
{%- endif -%}