Hi,
Two questions:
1. Is it possible to change the order of content on the mobile version of the website?
2. Is it possible to add a read more button to text (which is very long) on the mobile version of the website?
Thanks in advance!
PS: Your support is great, thanks!
Hey!
That’s not possible but you can have different elements that appear or hide depending on the screen size, for example you could have two color sections with different IDs (desktop-only, mobile-only), then add this to Quick CSS:
#mobile-only{
display: none;
}
@media only screen and (max-width: 767px) {
#mobile-only{
display: block;
}
#desktop-only{
display: none;
}
}
Also check:
http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Regards,
Josue