Tagged: media, order, responsive
Hello,
I’m wondering if there is a way to assign a priority for which sections appear at the top based on @media CSS.
Thanks!
dsammond
Hey dsammond!
hm you could try something like this in Quick CSS field:
@media only screen and (max-device-width: 736px) {
.avia_textblock.side-button {
position: relative;
top: -2045px;
}
section.av_textblock_section {
top: 214px;
position: relative;
}}
and adjust as needed.
Cheers!
Andy
Thank you Andy. I actually went a different route with this and created a duplicate section where I wanted it to appear for mobile and turn it on/off with “display: none;”, depending on the @media size. Nonetheless, appreciate your response.
dsammond