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
I've inserted the following code to hide/remove the header and footer sections on two specific pages, but there seems to be a bug. Whatever I do, the footers hide successfully, but the header is only removed from one page and not the other.
<style> #chocolate-tubeez .header{ display: none !important; } #chocolate-tubeez .footer{ display: none !important; } <style> #vanilla-tubeez .header{ display: none !important; } #vanilla-tubeez .footer{ display: none !important; }
Solved! Go to the solution
This is an accepted solution.
@comvert Please replace code like this
<style>
#chocolate-tubeez .header{
display: none !important;
}
#chocolate-tubeez .footer{
display: none !important;
}
#vanilla-tubeez .header{
display: none !important;
}
#vanilla-tubeez .footer{
display: none !important;
}
</style>
yoso.ca
This is an accepted solution.
@comvert Please replace code like this
<style>
#chocolate-tubeez .header{
display: none !important;
}
#chocolate-tubeez .footer{
display: none !important;
}
#vanilla-tubeez .header{
display: none !important;
}
#vanilla-tubeez .footer{
display: none !important;
}
</style>
This worked, thank you very much.