Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #658255

    Hello my friends,
    I want to hide a section n smartphone but only on smartphones not iPads :)
    This is the page link: http://de.prodesigncastello.com/
    Here you have a print screen: http://de.prodesigncastello.com/wp-content/uploads/2016/07/hide_section.jpg

    Is this possible? to show on iPads but hide on smartphone?
    Thank you

    #658536

    Hey teotaban,

    Please try the following in Quick CSS under Enfold–>General Styling:

    @media only screen and (max-width: 767px) {
    #sectiune_ipad {
    display:none; 
    }
    }

    Best regards,
    Rikard

    #658607

    Thanks…it,s working :)

    #658614

    Helo my friends :)
    the code it`s working but I did a mistake … i was thinking in iPad but I wrote Smartphones :(
    Cand you help me with another code for the same problem: to hide that section on ipad … only on iPads not smartphones
    Thank you and please forgive me for this mistake.

    #658933

    Hi,

    Try this instead:

    @media only screen and (min-width: 768px) and (max-width: 1024px) {
    #sectiune_ipad {
    display:none; 
    }
    }

    Regards,
    Rikard

    #659820

    Thanks :)

    #660294

    Hi,

    Glad we could help :-)

    Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Hide section on smartphones but show it on iPads’ is closed to new replies.