I’m using the post slider on my home page and the PNG that I’ve uploaded is showing a white background in the slider. It’s fine once you access the post but not in the slider.
Also is there a way of changing how the text is displayed? I would like it to appear at the right of the image rather than beneath it?
Cheers
Hey Rustybucket!
Thank you for using Enfold.
Add this on Quick CSS or custom.css:
.main_color .avia-content-slider .slide-image {
background: transparent;
}
Unfortunately, placing the content beside the image will break the post slider layout. You can try this:
.avia-content-slider .slide-entry {
width: auto;
}
.main_color .avia-content-slider .slide-image {
background: transparent;
float: left;
clear: none;
}
Best regards,
Ismael
Thanks for this CSS, I have just been searching the forum for exactly this. I would have thought though that this would be standard in the latest releases. :) Why would want white space on a coloured background when using a PNG ?