I would like to change the font style of the caption title & text on my fullscreen slider to look like this theme below. I want the titles to stand out more so it’s easier to read and so I can do away with the frames around it. Thanks in advance!
Hey djshortkut!
Try adding this to your custom CSS.
.avia-caption-title { background: none !important; font-size: 50px !important; }
.avia-caption-content, .avia-caption-content p { background: none !important; font-size: 20px !important; }
Regards,
Elliott
How do I increase the size of the caption title and text on mobile devices? I was able to get it closer to what I am looking for but the text is way too small and difficult to read right now on my iPhone.
Hey!
Please add following code to Quick CSS as well
@media only screen and (max-width: 480px) {
.avia-caption-title { background: none !important; font-size: 50px !important; }
.avia-caption-content, .avia-caption-content p { background: none !important; font-size: 20px !important; } }
Cheers!
Yigit
Hi!
@media only screen and (max-width: 479px) {
.responsive #top .slideshow_caption h2 {
font-size: 25px !important;
}}
@media only screen and (max-width: 479px) {
.responsive #top .slideshow_caption .avia-caption-content {
font-size: 20px !important;
}}
Change the number in px for “font-size” to your needs.
Cheers!
Andy
That did the trick! Thank you!