New Landing How can we help? Atelier Product Description

Viewing 10 posts - 1 through 10 (of 10 total)
  • Posted in: Atelier
  • #324174
    juliensalanave
    Member
    Post count: 125

    Hello support,

    I also noticed that product description and its variation is position below the slider or thumbnails when viewing it on iPad 10.2 using safari browser. Did I miss something in my setting. Please view attach file for your perusal. Thanks.

    Respectfully,

    Billy

    Attachments:
    You must be logged in to view attached files.
    #324308
    David Martin – Support
    Moderator
    Post count: 20834

    Hi,

    Looks like your custom CSS:

    #324350
    juliensalanave
    Member
    Post count: 125

    Thanks David for your response.

    #324354
    juliensalanave
    Member
    Post count: 125

    Hello David,

    I try to adjust width % but it didn’t work. Here is custom CSS:

    @media only screen and (min-device-width : 768px) {
    .woocommerce div.product div.images {
    width: 50% !important
    }
    }
    @media only screen and (min-device-width : 768px) {
    .woocommerce div.product div.summary {
    width: 50% !important
    }
    }

    Please advise. Tnx

    Respectfully,

    Billy

    #324355
    juliensalanave
    Member
    Post count: 125

    And here is the status of the product page now:

    /* Image thumbnail display */
    @media only screen and (min-width: 768px)
    .woocommerce div.product div.images {
    width: 60%;
    }

    /* Product description */
    @media only screen and (min-width: 768px)
    (index):173
    .woocommerce div.product div.summary {
    width: 38%;
    }

    But why is it that the production description / summary is below the slider which is suppose to be beside or right side the Product Thumbnail. Did I miss something wrong? Need your assistance on this matter. Thank you.

    Respectfully,

    Billy

    #324358
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Hi,

    Can you provide admin access to check if you have ant syntax error in the custom css?

    -Rui

    #324557
    juliensalanave
    Member
    Post count: 125
    This reply has been marked as private.
    #324591
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    I can’t see that css in the custom css option.

    -Rui

    #324898
    juliensalanave
    Member
    Post count: 125

    Rui I just removed those custom CSS because it won’t affect the front end even I put !important to the code.

    #324910
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    The css above is missing some brackets. Try this one.

    /* Image thumbnail display */
    @media only screen and (min-width: 768px){
    .woocommerce div.product div.images {
        width: 60%!important;
      }
    }
    
    /* Product description */
    @media only screen and (min-width: 768px){
    .woocommerce div.product div.summary {
        width: 38%!important;
    }
    }

    -Rui

Viewing 10 posts - 1 through 10 (of 10 total)

You must be logged in to reply to this topic.