Home Forums Support Copyright Add-on

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #111034
    Michael

    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

    #111040
    Michael

    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

    #111052
    Jean Paiva
    Developer

    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.

    #111097
    Tom
    Lead Developer
    Lead Developer

    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;
          }
    }
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.