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

    Hi,

    How can I make the stylesheet pick up an other background image in the “color section element” so that it is customized for tablets and mobile devices?

    I need it to pick up a smaller version of the background image than shown on computers.

    Kind regards,

    #645245

    Hey henrik51,

    I think it would be easier if you created another section and upload an image better adapted for mobile screens, you can give your sections ID’s to hide/show them using CSS after that:

    @media only screen and (max-width: 767px) {
    #desktop-section {
    display:none !important;
    }
    }
    
    @media only screen and (min-width: 768px) {
    #mobile-section {
    display:none !important;
    }
    }

    Thanks,
    Rikard

    #645261

    Oh yes, thanks.

    I also found out that I just use the “full width easy slider” instead of the “color section”. Then I won’t have to work with two images.

    Thanks, anyway :-)

    #645986

    Hi,

    Ok, no problem :-) Please let us know if you should need any more help on the topic.

    Regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.