hollydb: yikes (yikes)
hollydb ([personal profile] hollydb) wrote in [community profile] style_system2017-04-13 02:07 pm

Header title

I apologize. I know this has been covered here before but I've tried a few things (and looked through the help guide) and I'm not making any progress.

I'd like to remove the header image text/subtext.

This is my theme:

 photo hollyoyheader_zps1dy9dqig.png

I'm thinking it's possible the commands I'm trying to implement into the CSS just aren't going in the right place. I used to be much more fluent in CSS than I am presently and I'm giving myself a headache trying to figure this out.

Any help would be appreciated. Thanks!
This has been solved. Thank you!
syntheid: [Elementary] Watson drinking tea looking contemplative (Default)

[personal profile] syntheid 2017-04-13 07:31 pm (UTC)(link)
Not sure if I'm understanding you correctly, do you want the header box? If so maybe:

#header .inner {
  display: none;
}


If you just want the whole box gone:

#header {
  display: none;
}


Or something else?
poulpette: cropped picture of an illustrated octopus (Default)

[personal profile] poulpette 2017-04-13 09:09 pm (UTC)(link)
You might want to give this a try:

#title, #pagetitle {
 visibility: hidden;
}

That should do the trick visually. It only hides the text, which means you can keep your journal title in the page for accessibility purposes. Win-Win !