Archived topic
Change white color body only in home page
1 reply · Started by carlos on May 16, 2019
I want the white color of the body (cuerpo) to be the same white as the content (it is a whiter white), but only on the home page, it is not possible to do it with the customizer of colors that white does not exist
Thanks
Hi there,
you can use add this additional CSS to change just the home page body background:
body.home {
background-color: #ffffff;
}
To note the site also adds a box-shadow to the content area using CSS - which can be found in the Customizer > Additional CSS:
.inside-article, .sidebar .widget, .comments-area {
box-shadow: 0 0 60px rgba(0,0,0,0.05);
}
The box shadow will make the two colors look different.