Hi there,
I have my title bar removed from all pages in quick CSS as so:
.title_container { display: none; }
But I would like to add have a title (with or without the container – doesn’t matter) on the Forum pages.
Could you suggest an easy way to do this?
Thanks!
Hey mcmahon_pt,
You could try this code instead:
.page-template-default .title_container { display: none; }
.forum.forum-template-default .title_container { display: block; }
If you need further assistance please let us know.
Best regards,
Victoria
That worked perfectly – thank you!
Hi,
Great, glad we could help. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
Rikard
I ended up doing it like this to get the title container to display only on forum pages.
Works great.
.title_container { display: none; }
.forum.forum-template-default .title_container { display: block !important; }
Thanks again!