I’ve set the background image fade to 0 ms in the layout section of the theme options, but it still fades in. I’m using the latest version of Pro, and turned off all plugins.
Do you need a login?
Thanks,
T
I’ve set the background image fade to 0 ms in the layout section of the theme options, but it still fades in. I’m using the latest version of Pro, and turned off all plugins.
Do you need a login?
Thanks,
T
Hi,
This is a known issue which is still open in our issue tracker.
Rest assured this will be fixed soon.
Thanks
There’s no workaround?
Hi again,
Regretfully there is no work around for this, as mentioned above it has already been added to our issue tracker. For the updates you can check our changelog here https://theme.co/changelog/ as we post all the details there whenever an update is released.
Thank you for your understanding!
Is there anything I can do, even if I have to edit each page? I’m already having to touch each page anyway.
Hi There,
The workaround is a custom CSS, please remove the background-image you assigned in Layout and Design. And add the Custom CSS below to Theme Options > CSS
body .x-main {
background-image: url(YOUR IMAGE URL HERE);
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
Replace the phrase YOUR IMAGE URL HERE with an actual image URL.
Thanks,
Thanks very much. That put the image into the background of the section on a page, but not the header or the rest of the page. How can I get the background to show behind the entire page?
Hello @MTerryGreen,
If you want to insert a page background, please go to X > Theme Options > Layout & Designs > Background Options.
We would loved to know if this has work for you. Thank you.
Hi Terry,
In that case, please update the given code to this:
body {
background-image: url(YOUR IMAGE URL HERE);
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
Make sure the header and footer (or the rest of the page) has a transparent background-color so the background-image will see through it.
Provide us the page URL if you need help on the background-color transparency.
Thanks,
Perfect. That solved the problem. Thank you very much!
We are delighted to assist you with this.
Cheers!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.