On my site https://fundraisingcommittee.net/ I would like to make the fullwidth easyslider caption box longer so “Welcome to Fundraising Committee.net” is on ONE line instead of two lines. How can this be done?
Hi alex5252!
Try adding this to your custom CSS.
.slideshow_caption { width: 100% !important; }
Best regards,
Elliott
Thank you, that works until it gets to around 550px on mobile.
Is there a way to reduce the font size when it gets to that screen size so it stays on 1 line?
Hi!
Yes, that is possible. Use this:
@media only screen and (max-width: 767px) {
.responsive #top .slideshow_caption h2 {
font-size: 15px !important;
}}
Best regards,
Ismael
This is also useful for my query, how do i do the same but for the caption text aswell as the heading? Also in case i prefer how would i make the caption disappear altogether when viewed on a phone?
Hey!
use this code for caption title:
h2.avia-caption-title {
font-size: 15px;
}
and this for caption content:
.avia-caption-content {
font-size: 25px;
}
To hide caption on iPhone completely use this code:
@media only screen and (max-width: 736px) {
.slideshow_align_caption {
display: !important;
}}
Regards,
Andy