Tagged: splash page
hi
1. is it possible to make splash screen only show in home page or specific page?
2. is it possible to make splash screen only show only in mobile home page or mobile specifc page?
thanx
Hey Yorivan,
If you are referring to Color Section elements then you could give them ID’s in the element options and use CSS like this:
@media only screen and (min-width: 768px) {
#section-desktop {
display:block !important;
}
#section-phone {
display:none !important;
}
}
@media only screen and (max-width: 767px) {
#section-desktop {
display:none !important;
}
#section-phone {
display:block !important;
}
}
If that is not what you are looking for then please try to explain a bit further and post a link to the site in question.
Best regards,
Rikard