Board Title on Index

Did some searching didn't find an answer. How do you remove the Board Title from the Forum index page, while leaving the title in your browser tab intact?

Thanks!
 
Add to EXTRA.css:
Code:
.forum_list .titleBar {
display: none;
}
I've tried but it appears everywhere else.

For instance, if you use this css edit and have a xenporta home page, the board title shows on the home page.

How would you exclude the title from showing on your xenportal home page?

How would we exclude the board title from showing from a modification addon page such as XF Arcade or Blogs?

I tried to remove the Board Title period with

Code:
.titleBar {
display: none;
}

but when I clicked on a thread, the thread title no longer showed.
 
Replace .forum_list with the name of the template.

Use FireBug to inspect the code.

http://xenforo.com/community/threads/frequently-asked-questions.5183/#post-181112

How can I find out which template to edit?
Using your browser, view the page source and look for a line of code near the top of the page which begins
<div id="content" class="; the class is the name of the template. So for the main forum page, the line of code is:
<div id="content" class="forum_list">, which makes the template forum_list.
 
Replace .forum_list with the name of the template.

Use FireBug to inspect the code.

http://xenforo.com/community/threads/frequently-asked-questions.5183/#post-181112

How can I find out which template to edit?
Using your browser, view the page source and look for a line of code near the top of the page which begins
<div id="content" class="; the class is the name of the template. So for the main forum page, the line of code is:
<div id="content" class="forum_list">, which makes the template forum_list.
Works great!!! Thanks!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 
Top Bottom