Tagged: caption text
How do I change the caption text on sliders and h1/h2s from all upper case to a mix of lower/upper?
Also, can I add padding above a logo in the header?
Many thanks
Hi Picante!
To change the styling for the slideshow caption and text content try customising and adding this code to the Quick CSS or custom.css
.avia-slideshow .avia-caption-title{
}
.avia-slideshow .avia-caption-content{
}
To add top padding to the logo try adding this code to the Quick CSS or custom.css:
.logo{
padding-top:10px;
}
Cheers!
Arvish
Hey!
To change the case of the caption title from Uppercase to normal case try adding this code to the Quick CSS or custom.css:
.avia-slideshow .avia-caption-title{
text-transform:none;
}
Cheers!
Arvish