Community Forums › Forums › Design Tips and Tricks › Remove header text
Tagged: header, header text
This topic contains 5 replies, has 2 voices, and was last updated by Jen Baumann 5 months ago.
-
AuthorPosts
-
December 18, 2012 at 11:51 am #5954
Hey everyone,
I’ve been tweaking my header (gonescamping.com) and may have royally screwed up the css. Not sure. I uploaded the logo using genesis simple headers plugin (to adjust the size), then changed the pixels to 0 on the title/description text (in css) so it wouldn’t show on top of the logo. It looks fine, but you can’t click on the logo, I’m assuming because I wasn’t able to full delete the text, I only made it invisible. How to fully delete that text? I tried deleting the code in css about the header title/description and it didn’t make a difference.
Thank you!
Deonne
December 18, 2012 at 12:01 pm #5956You should have this in your css:
.header-image #title-area, .header-image #title, .header-image #title a {
display: block;
float: left;
height: 179px;
overflow: hidden;
padding: 0;
text-indent: -9999px;
width: 550px;
}And for #description:
#description {
color: #6195A6;
font-size: 12px;
font-style: italic;
font-weight: normal;
margin: 0;
text-indent: -9999px;
text-shadow: 1px 1px #FFFFFF;
}
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookDecember 18, 2012 at 12:09 pm #5961Jen,
Thank you! I put back the code per your direction but still can’t click on the logo. What next? (I’m sorry if this is obvious! Please forgive my ignorance.)
Deonne
December 18, 2012 at 12:27 pm #5966Erg, yes, I’m sorry. The body classes are wrong and that plugin doesn’t actually add any. Remove the first block of code I suggested above (leave the description one) and Try this:
#title-area, #title, #title a {
display: block;
float: left;
height: 179px;
overflow: hidden;
padding: 0;
text-indent: -9999px;
width: 550px;
}
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookDecember 18, 2012 at 12:33 pm #5969You’re a genius, it worked! Thank you so much for all your help. Happy holidays!
Deonne
December 18, 2012 at 12:49 pm #5976Thanks (blush)! And you’re welcome and happy holidays!
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on Facebook -
AuthorPosts
The topic ‘Remove header text’ is closed to new replies.