The background transparency switch in a section works on pages, but not on posts. This CSS forces the background on posts & projects to also be transparent.
/* -- START Fix transparent background on posts and projects -- */
.single-post #main-content, .single-project #main-content {
background: rgba(255,255,255,0);
}
/* -- END Fix transparent background on posts and projects -- */Code language: CSS (css)