I want to hide an image showing on my menu on mobile only. I am using the broadcast theme.
Hey @AmandaAbirached
Follow these steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- Add the following code in the bottom of the file above
1 Like
Please add below css code at bottom of assets/theme.css file
.sliderule-grid.blocks-1 {
display: none;
}
Thank you.
May I suggest to update code these steps:
- Go to Store Online-> theme → edit code
- Assets/theme.css
- Add code below to bottom of file
@media(max-width: 749px){
.sliderule-grid.blocks-1 { display: none!important;}
}
Hello @AmandaAbirached ,
You can try to follow these steps:
Go to Online Store → Theme → Actions → Edit code
Go to theme.liquid file → add this following code at the bottom of page:
@media (max-width: 767px) {
.site-nav__item img {
display: none;
}
}
Save and preview
Hope this can help you out. Let we know if you have any further questions.
Ali Reviews team.
worked perfectly thanks


