Removing line and changing font color in header
-
Hey all,
I’ve tried changing various codes, but nada. How would I remove the short grey line in the black title block at the top of the page? And how would I make the “Barry Cooper” bit white?
Sorry, I’m sure this is probably basic. I’m stuck. Again :)
The blog I need help with is: (visible only to logged in users)
-
How familiar are you with CSS? Do you have the ability to edit custom CSS in your account? If you can’t edit/create custom CSS on your site, I’m not sure there’s anything we can tell you to help.
-
Yes. I can edit the custom CSS. It’s working out what to type in there that’s the issue :)
-
OK! I just wanted to check to be sure. :)
To remove the line, try removing the background property from the
.site-description:beforeclass. Just delete (or comment out) that line.To change the color of your name, change the .site-title a, .site-description class color to whatever you want it to be.
Give that a go and let me know if it works.
-
Brilliant. The line’s gone.
For the font color change, I tried this:
.site-title a { color: #ffffff; } .site-description { color: #ffffff; }…but no joy. What am I doing wrong?
-
-
The color of the “Barry Cooper” text in the site description is in fact set to white, however, it looks gray because the opacity is about 60%. Try adding this to turn the opacity back up to 100%:
.site-description { opacity: 1; } -
Perfect! Thank you designsimply.
I didn’t understand the opacity command – another thing I’ve learned today.
-
- The topic ‘Removing line and changing font color in header’ is closed to new replies.