Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1045027

    Hello,

    I am referring to the anwser
    January 13, 2018 at 11:21 pm #896972 by mike here is the Post

    It is working perfectly fine and I really needed this solution. However I would like to exclude Mobile Screens from this Quick CSS.
    Example:
    #top.product-template-default.single.single-product .single-product-main-image {
    width: 70%!important;
    } BUT NOT NÒN MOBILE

    Can you give my a solution?

    #1045526

    Hey jojojacob,

    Please try this CSS instead:

    @media only screen and (min-width: 768px) {
    #top.product-template-default.single.single-product .single-product-main-image {
      width: 70%!important;
    }
    }

    Best regards,
    Rikard

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