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
Moeed
2
Hey @chumani
If you don’t want to show the heading then you can do this.
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
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