I recently just figured out how to make an image the entire background of my blog www.evercadecafe.com
Now I’m looking for some additional help, and wondering if anyone can help me. I’m wondering how do I center the title of a blog post? Also, how can I change all of the text to the color white?
There’s a CSS entry in there for “Post titles on blog index”. If you add text-align: center; to it, it should center the title of your posts.
Changing the color involves a lot more and depends on which text you want to change the color for. I would suggest going over the other CSS entries in the Custom CSS guide.
Hey @Braillynn, this CSS makes all the text white, except titles, since it looks like you already have that covered:
body, header p.description, body h1 a, body h1 a:hover, body footer nav, body footer a.home:link, body footer a.home:visited, body footer a.home:link, body footer nav a.home:hover {
color: white;
}
Give that a try and let me know if anything is still missing!