Unable to remove .Wrapper background

I’ve been trying to remove the .Wrapper background color in the Travelify theme. No matter what I do in the custom CSS it will not remove the background.

I’ve created a child-theme so that I can keep the original css formatting intact, but even with the child-theme css, it still won’t take the css changes.

I’ve tried, background-color:none;, background-color:transparent;, background:none;

I have this set up on a localhost, so I’m not able to supply a weblink. Sorry.

How can I remove the background so that it’s transparent in the .wrapper div?
Is there a way to remove the background option within the Customize> Travelify Element Color option?

Hi @hanadullset,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Travelify Other Options


.wrapper {
    background: none !important;
}

Best Regards,
Movin

Thank you! I tried it without the !important! and it wouldn’t work. This is great, thank you kindly.

You are most welcome here :slight_smile:

Please advise if you have more questions.