Hello @alalit,
Thanks for writing in!
1.) By default, the Integrity stack has its unique and built-in styling. This is why you have a white background color for the post content area. Regretfully there isn’t a setting in the Theme Options that you can change it. You need to add CSS code into X > Theme Options > CSS to be able to modify and override the Integrity stack styling. You need to use the Google Chrome Developer Toolbar to check the live HTML code and find which CSS selector you need to use.
By default, it is having a white background color with this built-in CSS styling:
.entry-wrap {
background-color: #fff;
}
2.) The same goes with the footer tags. It is using this custom CSS styling:
.entry-footer a {
border: 1px solid #ddd;
border: 1px solid rgba(0,0,0,0.125);
padding: 0.692em 1.154em 0.769em;
cursor: pointer;
font-size: 13px;
text-align: center;
text-transform: uppercase;
vertical-align: middle;
color: #c5c5c5;
color: rgba(0,0,0,0.375);
background-color: transparent;
border-radius: 0.35em;
box-shadow: inset 0 0 0 rgba(0,0,0,0), 0 1px 1px rgba(255,255,255,0.95);
-webkit-transition: color 0.3s ease,border-color 0.3s ease,background-color 0.3s ease,box-shadow 0.3s ease;
transition: color 0.3s ease,border-color 0.3s ease,background-color 0.3s ease,box-shadow 0.3s ease;
}
.entry-footer a:hover {
color: #777;
color: rgba(0,0,0,0.75);
border-color: #cfcfcf;
border-color: rgba(0,0,0,0.25);
background-color: #fff;
background-color: #fff;
}
3.) Any changes made in #1 should affect the single post background color.
4.) Still, you cannot change the settings because of the built-in styling for the Integrity stack. This is the custom CSS:
.widget {
/* text-shadow: 0 1px 0 rgba(255,255,255,0.95); */
}
.widget ul li, .widget ol li {
border-bottom: 1px solid #ddd;
border-bottom: 1px solid rgba(0,0,0,0.1);
padding: 0.65em 0.85em;
line-height: 1.5;
box-shadow: 0 1px 1px rgba(255,255,255,0.95);
-webkit-transition: background-color 0.3s ease;
transition: background-color 0.3s ease;
}
.h-widget {
margin: 0 0 0.5em;
font-size: 150%;
line-height: 1;
}
.widget ul li, .widget ol li {
border-bottom: 1px solid #ddd;
border-bottom: 1px solid rgba(0,0,0,0.1);
padding: 0.65em 0.85em;
line-height: 1.5;
box-shadow: 0 1px 1px rgba(255,255,255,0.95);
-webkit-transition: background-color 0.3s ease;
transition: background-color 0.3s ease;
}
.widget ul li a, .widget ol li a {
border-bottom: 1px dotted;
color: #7a7a7a;
}
Feel free the change the border-color, background-color, text color and etc. to look like what you have in mind.
Keep in mind that any modifications of the codes above are deemed as customization and it is beyond the scope of our support. You are the one who will maintain this code whenever there are theme updates.
Note: If you are unfamiliar with code and resolving potential conflicts, you may select our One or Care service for further assistance. We are unable to provide support for customizations under our Support Policy.
Thank you for your understanding.