Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
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
Hi all,
does anybody have an idea, why it shows the title of my first blogpost as a header of all blogposts 😞
I just added a new blogpost but in the menu it shows the header of first blogpost's title...
my homepage is https://www.chumani-jewels.com/
Appreciate any help
Solved! Go to the solution
This is an accepted solution.
Hello @chumani
Go to online store ---------> themes --------------> actions ------> edit code------->theme.css ----> line number 1115
search this code
@media only screen and (min-width: 750px) {
.section-header {
margin-bottom: 55px;
}
}
and replace with this code
@media only screen and (min-width: 750px) {
.section-header {
margin-bottom: 55px;
display: none !important;
}
}
result
If this was helpful, hit the like button and mark the job as completed.
Thanks
Hey @chumani
If you don't want to show the heading then you can do this.
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag
<style>
header.section-header.text-center {
display: none !important;
}
</style>
RESULT:
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
This is an accepted solution.
Hello @chumani
Go to online store ---------> themes --------------> actions ------> edit code------->theme.css ----> line number 1115
search this code
@media only screen and (min-width: 750px) {
.section-header {
margin-bottom: 55px;
}
}
and replace with this code
@media only screen and (min-width: 750px) {
.section-header {
margin-bottom: 55px;
display: none !important;
}
}
result
If this was helpful, hit the like button and mark the job as completed.
Thanks
Thank you for the quick solution 🙏
Thanks..... always there to help you....!!!
Hi @GTLOfficial again, the only thing is: it's not working for the mobile version 😞 Do you know why?
Hello @chumani
Go to online store ---------> themes --------------> actions ------> edit code------->theme.css ----> line number 1112
search this code
.section-header {
margin-bottom: 35px;
}
and replace with this code
.section-header {
margin-bottom: 35px;
display: none !important;
}
result
Thanks