Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #803376

    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!

    #803611

    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

    #803614

    That worked perfectly – thank you!

    #803743

    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

    #803962

    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!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘How to add title to BBpress Forum Page Template’ is closed to new replies.