I'm currently using a layout with a custom header. I would like my journal title and subtitle to not show up, but if I change the code in the CSS to "display: none", the entire header disappears. If I delete the titles in the Customize Style section, the header itself also disappears. Is there any way to keep my header image, but have the titles removed?
Thanks in advance!
Thanks in advance!
no subject
Date: 2011-05-30 11:06 am (UTC)#title, #subtitle {
display: none;
}
(Uhh, possibly that is .title, .subtitle, but I can never remember.)
no subject
Date: 2011-05-30 11:31 am (UTC)This is the title's code, in case that's helpful.
h1#title {
margin: 0;
padding: 1.5em 0 0 0;
color: #FFFFFF;
font-size: 2em;
font-weight: bold;
letter-spacing: 0.1em;
}
h2#subtitle {
margin-top: -0.4em;
padding-bottom: 0.6em;
color: #FFFFFF;
font-size: 0.8em;
font-weight: bold;
letter-spacing: 0.1em;
text-transform: lowercase;
no subject
Date: 2011-05-30 11:41 am (UTC)#title, subtitle {
display: none;
}
that
#header {
height: 1263;
}
to:
#header {
height: 1263px;
}
That should do it!
no subject
Date: 2011-05-30 11:49 am (UTC)no subject
Date: 2011-05-30 11:57 am (UTC)no subject
Date: 2011-05-30 11:59 am (UTC)no subject
Date: 2011-05-30 12:03 pm (UTC)You'll need to set:
width: 1263px;
height: SOMETHINGpx;
(Note, no space in between the number and the px)
no subject
Date: 2011-05-30 12:04 pm (UTC)Near as I can figure your header is 201px high, so try changing the height measurement accordingly:
#header {
height: 201px;
}
no subject
Date: 2011-05-30 12:05 pm (UTC)no subject
Date: 2011-05-30 12:07 pm (UTC)no subject
Date: 2011-05-30 12:40 pm (UTC)