Hey Kriesi,
I used to have arrows and dots for the slideshow on mobile devices,
though after the last update they dissapeared. I’ve managed to find this line on shortcodes.css (line 3695) –
@media only screen and (max-width: 767px) {
.responsive #top .avia-slideshow-controls a{display:none;}
…
How do I bring them back?
Thanks,
Uri
Hey Uri_Berry,
Try this code in the General Styling > Quick CSS field:
@media only screen and (max-width: 767px) {
.responsive #top .avia-slideshow-controls a {
display: inline-block!important;
}}
Please clear your cache :)
Best regards,
Mike
Thanks a lot! works great, super support :)
I have another question, when I open this page (in private content) on a mobile device,
the overlay on the Masonry-Grid elements appears to be allways on, this causes a problem for me
because I want the elements to have a dark background on overlay…
is there a way to make it work like on desktop? – the overlay will appear only on touch?
Have a nice day,
Uri
Hey!
The touch event can not be controlled so easily with CSS.
It would need some more work to be controlled properly, so I would suggest if you need it a lot to consider
hire someone to help you with that process.
Regards,
Basilis
Thanks!
Can I just cancel the overlay on mobile?
I would prefer to have the image instead of the text and background
Uri
Hi,
To remove the overlay on phone try this code in the General Styling > Quick CSS field:
@media only screen and (max-width: 767px) {
#top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content {
background: none !important;
display: none !important;
}}
Best regards,
Mike
Thanks so much Mike, worked a charm :)
Uri