Site logo

Archived topic

Copyright Add-on

3 replies · Started by Michael on May 28, 2015

Viewing posts 1–4 of 4

Hi,
I am using the copyright add-on to display some own information. Is it possible to make the copyright section disappear on mobile devices (only)?

Thanks

another question with same intention: i have several sections on my pages and would like the first section on a page not to be showing on mobile devices (because it's a large picture taking too much screen space). how could I solve that?

Thanks for your help

You can use this code:

@media only screen and (max-device-width: 480px) {
		.hide-on-mobile,
		.site-info {
			display: none;
		}
}

You just need to put this class: hide-on-mobile on the CUSTOM CLASSES of the section to hide.

Jean's code is great! I would only adjust the pixels to match the breakpoint of the rest of the theme.

So it would be something like:

@media (max-width: 768px) {
      .hide-on-mobile,
      .site-info {
            display: none;
      }
}
This archived topic is closed to new replies.