Slide Gallery now forcing black background
-
I only noticed this after I updated my WordPress Version to 5.6 on my personal site which I use as a test-bed for the many business sites I manage.
I use the following CSS to set the slideshow background to white.
.slideshow-window { background-color: white; border: 1px solid white; }
This has suddenly stopped working. When I checked the code I discovered that the code is now overriding the CSS by using style=”…” parameters in the HTML, which are forcing the background to black.
<div class="slideshow-slide" itemprop="associatedMedia" itemscope="" itemtype="https://schema.org/ImageObject" style="background-color: rgb(0, 0, 0); position: absolute; top: 0px; left: 0px; z-index: 22; opacity: 0; display: none; width: 1198px; height: 705px;">...</div>
Note the: background-color: rgb(0, 0, 0) in the above.
By doing so the end-user is completely robbed of any ability to adjust the appearance of the slideshow. I have hunted and there does not appear to be any parameters that allow me to change the slideshow background color, though the css selector slideshow-black in the surrounding DIV suggests there ought to be a slideshow-white (or any other color).
I have a huge number of slideshows in posts across several business sites that all set the slideshow background color.
Any suggestions as to how this can be simply fixed?
The page I need help with: [log in to see the link]
- The topic ‘Slide Gallery now forcing black background’ is closed to new replies.