Hello,
I wonder how it is possible in the mobile version (CSS) to hide the page title on each individual news page automatically (but not on the general news page).
Example:
www.test.de/news/news1
www.test.de/news/news2
www.test.de/news/news3
In this case I would want to hide it on news1, news2 and news3 (= automatically on everything that comes after "www.test.de/news/")
On the contact page I hide the page title as well and solved it this way:
body.slug-contact .mobile-title,
body.slug-contact .navbar,
body.slug-contact .burger {
display: none !important;
}
body.slug-contact{
padding-top: 0;
}
… but I don’t know how to address "everything that comes after "www.test.de/news/" in CSS.
I would be so happy if somebody knew!
Thanks in advance!
Fiona