Morning After theme
-
Hi, I am trying to change the background color of my title and tagline. I’m not sure what the CSS command is to change these sections?
Many kind thanks!
The blog I need help with is: (visible only to logged in users)
-
If you want both the title and tagline to have a solid background color behind them, I recommend adding this CSS to your stylesheet:
.title {
background-color: lavender;
width: 240px;
}If you want the title and tagline to have different background colors, try playing with these classes:
.site-title {
background-color: lavender;
}
.site-description {
background-color: lightgrey;
}Of course, you can change “lavender” to whatever color you want. I included the width change, as well, because otherwise the letter L in Real hangs out over the edge of the background color. You can see what I mean by leaving out the width property.
I hope that helps!
- The topic ‘Morning After theme’ is closed to new replies.