Viewing 4 reply threads
You must be logged in to reply to this topic.
Hi,
I have a question, i have finished my website, but in mobile phones, when i entry in my website with my mobile phone, the slide is seen bad, the tittle, subtittle and description, change their size and in some slide the subtittle doesn’t show, what can i do with this?
Can i hide the tittle, subtittle, or description only for mobile phones?
Can i manage the padding of tittle, subtittle or description only for mobile phones?
Can i hide the slide only for mobile phones?
Thanks.
Hello,
You can do all of these. Let me know which one do you want to implement and i’ll give you the exact code to add into your custom css box.
Best regards!
Well if we can do all, i would like can manage tittle subtittle and description on slide, move up, move down, change size font.
Can you give me the code to hide the text? this would be if i manage the text and i don’t like all text in a little screen.
thanks Mihaila!
Hello,
To reduce space between text in slider add this code into your custom css box:
@media (max-width: 480px){
.codeless_slider .swiper-slide .content h1{ padding-top: 0px !important;
padding-bottom: 0px !important;}
}
To delete text and button, add this code:
@media (max-width: 480px){
.codeless_slider .swiper-slide .content h5 { display: none;}
.codeless_slider .swiper-slide .content h1 { display: none;}
.codeless_slider .swiper-slide .content p { display: none;}
.codeless_slider .swiper-slide .buttons.animated { display: none;}
}
Best regards!
You must be logged in to reply to this topic.