We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

static background - Venus | Forum

Alex
Alex Oct 21 '15
hi!

How to make static background image without slide show?

thanks!

Kyle Roberts
Kyle Roberts Oct 28 '15
I haven't sat down and found the exact code to take out the multiple images, but you can go and find the individual images and change the pictures to the same image and it would just rotate the same picture.... As a quick fix, until permanent solution is found.
Darryl B Leader
Darryl B Oct 31 '15
Here you go. Just checked this on my test site, and it works. You have to do it using the body tag. Seems the .ow_page_wrap was replaced with the slider.

.cb-slideshow, .cb-slideshow::after {
    display: none;
}
body {
    background-image: url("Your image url");
    background-size:cover;
    background-attachment:fixed;
}
John
John Jan 20 '17
Thanks, @Darryl B
This is really useful!
Frank
Frank Oct 1 '18

With me I can not do that, the slide show is still active


.cb-slideshow, .cb-slideshow::after {
    display: none;
}
body {
    background-image: url("Your image url");
    background-size:cover;
    background-attachment:fixed;
}

Darryl B Leader
Darryl B Oct 7 '18

Looks like the css still works. Could be possible that you have some other css in the themes custom css in the admin panel that has an error. With css, if there is an error, the css will stop loading at that point.

Try moving this to the top of your custom css. If it works there, then you have some error. Maybe a missing semi colon, and bracket.

The Forum post is edited by Darryl B Oct 7 '18
You do not have permission to reply this topic