Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #508040

    Hi,

    i have a part of my website which i want for normal screen and one for mobile. Can you please help me with the code.

    Thanks a lot simon

    #508232

    Hey Simon,

    Please try the following in Quick CSS:

    @media only screen and (min-width: 768px) {
     #team {
    display:block !important;
    }
     #full_slider_1 {
    display:none !important;
    }
    }
    
    @media only screen and (max-width: 767px) {
     #team {
    display:none !important;
    }
     #full_slider_1 {
    display:block !important;
    }
    }
    

    Cheers!
    Rikard

    #508263

    Thank you Rikard, the code worked!

    Simon

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘One part for Desktop one for mobile’ is closed to new replies.