I’ve searched the documentation but can’t find a way to change the page background opacity.
I’d like to customize the Cascade official theme so that blog posts (and all other page types for that matter) have an opacity similar to the Focus official theme.
Possible? (I promise to publicly share the theme I develop)
Official response from Taylor Pineiro
From our theme support page - the answer was posted there
"You can do that by modifying your theme.scss and theme template files. To access those, you will need to click Pages > Theme > New custom theme, and leave “Clone your current theme” and “Switch to your new site them immediately” checked."
Navigate to where Jesse recommended then find this block of code:
#content_wrap_background {
border-top: 1px solid darken($theme_color_6, 11);
background: transparent;
padding: 0; }
and replace with:
#content_wrap_background {
border-top: 1px solid darken($theme_color_6, 11);
background: transparent;
opacity: 0.8;
padding: 0; }
you can play with the “opacity” number to find the desired level.
Share this post
Be the first to comment
Sign in with