I am trying to hide the site title from the mastheadon my site (www.1140balance.com). I already have the following custom CSS applied:
/* Header */
header#masthead {
background-repeat: no-repeat;
background-attachment: fixed;
background-position: top center;
}
@media (max-width: 680px) {
header#masthead .hgroup {
padding-top: 55px !important;
padding-bottom: 55px !important;
}
header#masthead {
background-size: 100%;
}
}
What can I add to this to hide the site title that is appearing over my header image?
I have already tried adding the following and it did not work:
#masthead . site-title {
display:none;
}
I have also tried adding (and it did not work):
/* Vantage Hide the Site Title */
header#masthead .hgroup h1 {
display: none;
}
Thank you!
Aleah
Hi Aleah
Please try the following
header#masthead .hgroup .site-title { display:none; }Hope this helps
Hi Aleah
The code above should work like a charm
@Magus much appreciated :)
Cheers
@Addo
No Problem, You have all helped me when I needed it, so I’m happy to repay whenever possible.
Magus
Thank you guys for running the Vantage :)
@Addo, unfortunately this did not work. Below is the current custom CSS I have (I added yours to the end):
/* Header */
header#masthead {
background-repeat: no-repeat;
background-attachment: fixed;
background-position: top center;
}
@media (max-width: 680px) {
header#masthead .hgroup {
padding-top: 55px !important;
padding-bottom: 55px !important;
}
header#masthead {
background-size: 100%;
}
header#masthead .hgroup .site-title {
display:none;
}
I’ve tried adding yours to the front and the end, but the title is still visible over my header image.
Thanks!
Aleah
Hi Aleah
Sorry for the hassle. Use this
header#masthead .hgroup h1 { display:none !important; }If that does not work out for you, kindly include login details so that I check this out. Ensure you check the ‘Private Reply’ option while sending the credentials
Cheers
After a little trial and error, I finally got it to work! (I had to place it ahead of the other custom CSS I had in there for the header). Thank you so much!!!
Perfect :-)
Always feel free to open a new thread whenever you require support
Cheers