XF 1.5 homepage edit

Brad P

Well-known member
Afternoon,

How do i got about removing the title bar from the homepage, i understand you can do this

Code:
.titleBar h1 {
  display: none;
}

but that removes the text from the message layout also, only want it removed from homepage​
 

Attachments

  • Untitled.webp
    Untitled.webp
    66 KB · Views: 17
The S0rethumbs community i want to remove, i have unchecked the SP for your addon Brogan, it still displays on my end.

what do you mean? i have already said that the code you give me removes also the thread discussion title as well using that, i also found this thread


but again i am not able remove it
why dont you drag it ourt of the body using margin
 
Brogan has given you the class name you need to target. You're not looking for a template, you're looking for the class name that the template uses which Brogan points out.

I know he has a property but as an example, for his page:
Code:
.cta_featuredthreads_featured .titleBar { display: none;}

Or if you wanted to hide it in the forum view(discussion list):

Code:
.forum_view .titleBar { display: none; }

Doing just .titleBar as you found out last week is too general and will hide it everywhere.
 
Brogan has given you the class name you need to target. You're not looking for a template, you're looking for the class name that the template uses which Brogan points out.

I know he has a property but as an example, for his page:
Code:
.cta_featuredthreads_featured .titleBar { display: none;}

Or if you wanted to hide it in the forum view(discussion list):

Code:
.forum_view .titleBar { display: none; }

Doing just .titleBar as you found out last week is too general and will hide it everywhere.
Gotcha. Thank you Russ
And Brogan appreciate the time you put into this thread.
 
Top Bottom