Struggling with adding custom captions? I'm using a Multisite WordPress setup and trying to avoid editing the captions.css
file in the plugins folder. Here's what I attempted:
.rev_slider .tp-caption .my_head{
position: absolute;
color: #4C9141;
text-shadow: none;
font-weight: 700;
font-size: 20px;
line-height: 20px;
font-family: Arial;
margin: 0px;
border-width: 0px;
border-style: none;
white-space:nowrap;
text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}
I tried inserting it into custom css via the Theme - no luck. Then attempted in the style.css
- still didn't work. Next, clicked on the EDIT CSS
button in wp-admin
, inserted the code starting with .tp-caption.my_head{
, hit Update - nothing happened, and the file wasn't updated.
Am I missing something simple or is everything completely off? Appreciate any guidance you can provide.