Archived topic
Cant find where the colors for website padding and blog title are to change
1 reply · Started by Andy on March 5, 2022
Hi, I recently changed the colors on my website and can't find what setting in the color picker to change the grey colour that runs down the left and right edge of the website.
The other area is the title in a blog post. I want to change this title background to white as it's also currently grey.
It could also be set in the CSS but I don't understand the code but happy to change it :-)
Thanks for any help you can give.
Cheers
Andy
Hi there,
to change the grey colour that runs down the left and right edge of the website.
This is actually from this CSS from Additional CSS field in the customizer:
html {
background: #ddd;
}
to change this title background to white as it’s also currently grey.
That would be this snippet in Additional CSS field in the customizer:
/* Posts grid styles */
.generate-columns .inside-article {
background-color: rgba(0,0,0,0.02);
transform: scale(1);
box-shadow: 0px 0px 0px 1px rgba(0,0,0,0);
transition: all 0.1s ease-in;
}
Let me know if this helps :)