I am utilizing sticky post on the front page to create three slider images with text superimposed on the image using the subject of the post. However the box color and font color are too similar to the photograph and hard to read. How can I change the color of the translucent box or font color?
Hi Jasonsprayberry, if you go to appearance>theme options and the layout option you can enter the below css in there without having to input it directly into the styles.css code.
i have used the following settings
#slider .entry-title {
top: 65%;
background:rgba(0, 0, 0, .30);
color:#FFF ;
}
the top: 65%; also lowers where the text appears in the slider
thanks
supergarEo