Here's how you can do it:
1. Go to your WP Dashboard -> Appearance -> Editor
2. Open Style.css (make sure you're using the child theme).
3. Add following content at the bottom of the style sheet in the editor:
Code:
.slide_caption .slide_title{
top: 300px !important; /* Adjusts spacing of the Caption Title form Top */
left: 200px !important; /* Adjusts spacing of the Caption Title form Left */
font-size:20px !important; /* Adjusts spacing of the font size of Caption Title */
background: #222 !important; /* Adjusts background color of Caption Title */
color: #ffffff !important; /* Adjusts Title color of Caption Title */
padding: 10px 15px 8px !important; /* Adjusts padding of Caption Title */
}
.slide_caption .slide_content{
....Same parameters as above...
}
.slide_caption .slide_action{
....Same parameters as above...
}
For Simple Slider captions :
Code:
.flex-caption {
top: 10%;
left: 10%;
background:#444;
}
.flex-captions h3{ /*...Flex caption title CSS...*/
color: #ffffff;
line-height: 12px;
padding: 20px 5px 10px;
font-size:20px;
}
.flex-caption p{
line-height: 14px;
padding: 0 5px;
color: #ffffff;
font-size:12px;
}
.flex-caption .button{
margin: 0 0 10px;
}
Bookmarks