Change wordpress background color plus resize to fit the text!
-
Hi there,
I have troubles changing the backfground color of the default wordpress slideshow.
After reading a lot of posts i tried to copy & paste some css code but nothing.
Lots of people mention to find slideshow-window which does not exit in my stylesheet.css
The slideshow is under the page games.
My second issue is that on one of my slides the text exceeds the slideshow border?
Thank you,
PS.The blog I need help with is: (visible only to logged in users)
-
Hi there,
Let’s try with add this css;
.slideshow-window{ background-color: #fff; border: 20px solid #fff; height: 100% !important; }Change #fff with color you want. If it doesn’t work, you can add !important before semicolons (;). So it’ll be like this;
.slideshow-window{ background-color: #fff !important; border: 20px solid #fff !important; height: 100% !important; }Also if you want to change color of Slideshow caption you can use this css;
.slideshow-slide-caption{ color: #000; }We also need to adjust Control Slider after we add height: 100% !important to make text kepp inside the container;
.slideshow-controls{ bottom: 100px; }I hope it will helps you. Please let us know if you need another help.
- The topic ‘Change wordpress background color plus resize to fit the text!’ is closed to new replies.