transparent body

Posted in: Newspaper
Post count: 14

Hi Sir,

how to get transparent in body?
I want delete white body to transparent, like this link http://prntscr.com/7pw52p

regards

J

Post count: 322

Here’s a good start. It’s how I’ve added some opacity to the body on my site – InsideTheStar.com. This will get you started and may do the whole thing. You’ll have to check it out once applied and find any gaps, if there are any.

.td-post-template-3 .post,
.td-post-template-4 .post,
.td-post-template-6 .post,
.td-post-template-7 .post,
.td-post-template-9 .post,
.td-post-template-10 .post,
.td-post-template-11 .post {
  background-color: transparent !important;
}
.td-post-template-3.post,
.td-post-template-4.post,
.td-post-template-6.post,
.td-post-template-7.post,
.td-post-template-9.post,
.td-post-template-10.post,
.td-post-template-11.post{
  background: transparent !important;
}

.td-post-template-default article,
.td-post-template-1 article,
.td-post-template-2 article,
.td-post-template-5 article,
.td-post-template-8 article {
  background-color: transparent !important;
}

.td-post-template-8-box,
.td-main-content-wrap,
.td-category-grid,
.td-category-header {
  background: transparent !important;
}

Add those four rules to your Custom CSS in the theme panel.

Post count: 14

Hi,

thanks Sir, but not work on my url http://masbanyu.com/good

Post count: 322

Add this.

.td-page-wrap {
  background: transparent !important;
}
Post count: 14

still not work Sir.

Post count: 322

Like I said, it’s a starting point.

Lots of containers layered with various backgrounds set. You have to go through them. What I gave you will cover 70% of it if you did it right. Clear caches too (site, CDN, and browser). Use Inspect in chrome or FireFox to identify the containers that need a transparent background applied.

Good Luck.

Post count: 14

white background still there.

Post count: 7909

Hi,

Please try this custom css in Theme Panel > Custom Css and also clear cache:

.td-page-wrap {
background-color: transparent !important;
}

Thanks!

Viewing 8 posts - 1 through 8 (of 8 total)
You must be logged in to reply to this topic.