Can you change the color of the test box that appears over the Feature photo? Currently it is white... can it be transparent?
Slider Text Bar Colour
4 posts from 2 voices-
Posted 1 year ago #
-
Hey,
yes - open up css/custom.css and add following code:
.post_excerpt { background: none #333; border-bottom: none; }Adjust the background color value to your needs (i.e. use "transparent" instead of "#333").
Posted 1 year ago # -
Sorry, I do not know any code stuff - at all - do I just open that file and paste anywhere and save? Can you get something like 50% white?
Posted 1 year ago # -
Yes, just open the file and insert the code I posted above. Maybe you need to use a ftp software (like filezilla) to download/upload the file.
To get a semi transparent background use:
.post_excerpt { /* Fallback for web browsers that doesn't support RGBa */ background: rgb(255,255,255); /* RGBa with 0.5 opacity */ background-color:rgba(255,255,255,0.5); border-bottom: none; }Note thatthids code is supported by newer browsers only. Others won't show a semi transparent effect.
Posted 1 year ago #
Reply
You must log in to post.














