Use this code in Custom CSS option, if theme doesn’t provide just install one of those Custom CSS plugin.
#featured-slider { background: #000; }
#featured-slider img { opacity: 0.5; }
The code is to darkening the image in slider section. Change the value 0.5 to adjust darkness.
Is there a way to darken the gray background in the slider text description area. Spacious is using white text on a med. gray background and I want to be able to darken the background….on the slider description area. Can you help me – is there a way to do this?
And if not, which plugin can I use to embolden that text so that it shows up better and is easier to read? SAMPLE SITE: http://www.maryfischerdds.com
Last but not least = in the spacious theme = how can embolden, increase the site of the site identity (at the top of the page) to be more noticeable. For instance – the phone # is so small and if I were to add an e-mail address ups there – would it be clickable?
Thank you!
You can use this code in the Custom CSS area to change the opacity of the slider “Title/Description” area.
#featured-slider .entry-description-container {
background-color: #000000;
background-color: rgba(0, 0, 0, 0.6);
padding: 10px 15px;
padding: 1rem 1.5rem;
}
The “0.6” in line 3 of the code is the “Opacity”. The range is 0 to 0.9… with “0” being the lightest and 0.9 being the darkest.
Hope this helps.