XF 1.2 How to remove Board Title on all pages?

Darkbro100

New member
Licensed customer
How would I go about removing the board title on all the pages?
 

Attachments

  • Screen Shot 2013-08-11 at 2.55.05 PM.webp
    Screen Shot 2013-08-11 at 2.55.05 PM.webp
    48.5 KB · Views: 39
Here is a quote from that thread:

How can I remove the title from the forum home page?
Add one of the following to the EXTRA.css template:
Code:
.forum_list .titleBar {
display: none;
}
or
Code:
.forum_list .titleBar h1 {
font-size: 0px;
}
Note that this may have an impact on SEO. Refer to the discussion thread in the forum for more information.
 
Back
Top Bottom