Hey 🙂
If you want to hide only the title you can try such custom CSS:
body.category .title-bar.outside .page-title{
display: none;
}
With kind regards.
Air.
Hi Air,
thank you for the suggestion. This would indeed hide the title completely. However my problem is that the whole title is Kategorienarchiv: Präparate. I want to hide the “Kategorienarchiv:” (Category archive). I just just want to see the name of the category there (Präparate).
When looking at the HTML of the page, I can see that both parts of the header are located within the same <h1> tag.
Best regards,
Patrick
How can I hide search icon (magnifying glass) on the menu?
Thank you.
@docakp what does this have to do with this topic? Please start your own topic 🙂
@pschimmel indeed, this will be troublesome because both are in the same tag.
Please try this custom CSS:
body.category .title-bar.outside .page-title{
/*color: transparent;*/
font-size: 0;
}
body.category .title-bar.outside .page-title span{
color: #fff;
font-size: 30px
}
If this is too many tricks, you will have to override the theme template to remove the unnecessary word.
With kind regards.
Air.
@apollo13themes That CSS worked, I just had to set the font-size to 60 instead to 30px.
Very nice. Thank you so much.
All the best,
pschimmel