- This topic has 2 replies, 2 contibutors, and was last updated 8 years, 8 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Question
Answers
Viewing 3 posts - 1 through 3 (of 3 total)
- The question ‘Blog Post Tittle’ is closed to new replies.
BuddyBoss Home – Web › Support Forums › Themes › Boss. theme › Blog Post Tittle
Dear support,
I was trying to prevent the Post Tittle to be shown over the Post Featured Image and added to my custom css:
h1.main-title{
display: none;
}
This did solve the issue, however also removed the tittle from my group page. I believe they share the same class.
Any hints in how I can get this done?
Thanks,
Frank
Solved. For all other users that face the same issue:
1) Add this to custom css:
h1.group-title{
line-height: 0.5;
font-size: 35px;
font-family: “Open Sans”,sans-serif;
}
2) Change group-header.php line 24:
From: class=”main-title”
To: class=”group-title”
Thank you,
F.