Hi Guys,
I’m making mobile version of the page and idea is to create color section wich’s elements should only display on mobile and no on desktop. What CSS can use to make section hide from anything above 768px?
Hi anogma!
Add an ID to your section and then add this to your custom CSS.
#yourID { display: none; }
@media only screen and (max-width: 767px) {
#yourID { display: block !important; }
}
Cheers!
Elliott