Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hey, can someone help me to edit my shopify store like the mobile version of fearofgod.com?
I want the header transparent and if i scroll down it should turn white.
And when i open the menu it should be completely blurred and the header hidden (like the cart when its open).
Just for the mobile version.
Thank you
Solved! Go to the solution
This is an accepted solution.
Code update
{% if template == 'index' %}
<style>
.section-header sticky-header {
background: transparent;
}
body .section-header.scrolled-past-header sticky-header {
background: #fff !important;
}
#MainContent {
margin-top: -144px;
}
@media (max-width: 749px) {
#MainContent { margin-top: -72px !important; }
}
</style>
{% endif %}
<style>
@media (max-width: 749px) {
.menu-drawer,
body sticky-header:has(.menu-opening) {
background: #ffffffe6 !important;
backdrop-filter: blur(4px);
}
body sticky-header:has(.menu-opening) .header__heading,
body sticky-header:has(.menu-opening) .header__icons {
display: none;
}
}
</style>
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Please share your store URL please
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Please add this code to theme.liquid, after <head> in Online store > Themes > Edit code
{% if template == 'index' %}
<style>
.section-header sticky-header {
background: transparent;
}
body .section-header.scrolled-past-header sticky-header {
background: #fff !important;
}
#MainContent {
margin-top: -144px;
}
@media (max-width: 749px) {
#MainContent { margin-top: -64px !important; }
}
</style>
{% endif %}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
really nice the header 😁 but the menu is not the same like the one in fearofgod.com.
Can u give me a code for fullsized and blurred menu please?
Forgot that, give me a few minutes
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Please update the code.
{% if template == 'index' %}
<style>
.section-header sticky-header {
background: transparent;
}
body .section-header.scrolled-past-header sticky-header {
background: #fff !important;
}
#MainContent {
margin-top: -144px;
}
@media (max-width: 749px) {
#MainContent { margin-top: -72px !important; }
}
</style>
{% endif %}
<style>
@media (max-width: 749px) {
body sticky-header:has(.menu-opening) {
background: #fff !important;
}
body sticky-header:has(.menu-opening) .header__heading,
body sticky-header:has(.menu-opening) .header__icons {
display: none;
}
}
</style>
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
You are a genius! I just got one thing remain. On the website fearofgod.com is the background from the menu blurred. Is it possible to code it too?
This is an accepted solution.
Code update
{% if template == 'index' %}
<style>
.section-header sticky-header {
background: transparent;
}
body .section-header.scrolled-past-header sticky-header {
background: #fff !important;
}
#MainContent {
margin-top: -144px;
}
@media (max-width: 749px) {
#MainContent { margin-top: -72px !important; }
}
</style>
{% endif %}
<style>
@media (max-width: 749px) {
.menu-drawer,
body sticky-header:has(.menu-opening) {
background: #ffffffe6 !important;
backdrop-filter: blur(4px);
}
body sticky-header:has(.menu-opening) .header__heading,
body sticky-header:has(.menu-opening) .header__icons {
display: none;
}
}
</style>
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Thank you so much bro
You are very welcome!
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
I've been looking for it for two days and tried all the codes but none worked. I would be really happy if it worked now.