Jump to content

GastonDuflos

Member
  • Posts

    35
  • Joined

  • Last visited

Posts posted by GastonDuflos

  1. 21 hours ago, tuanphan said:

    The banner image looks fine. What is problem now? If you mean white space between header - image, you can reduce number in margin top

    Thanks @tuanphan. The image doesnt look fine, its cropped on mobile. Please see images attached below to see thats there is at least a 30% of the height image been cropped on mobile. 

    The image on desktop is 100%. 

    IMG_1701.jpg

    Screenshot 2023-12-21 at 6.04.43 pm.png

  2. 20 hours ago, tuanphan said:

    You can set margin top code. I think header overlap section abit

    @media only screen and (max-width: 767px) {
        [data-section-id="657f778af1a704689bdfd139"] {
            min-height: unset !important;
            height: 30vh !important;
    		margin-top: 5vh !important;
        }
    }

     

    Thank you @tuanphan. I updated the code but still with no luck. I think the problem is not with the header section but with the banner section itself. This is how it looks on my Iphone:

     

    URL: www.gastonduflos.com

    IMG_1701.jpg

  3. 2 hours ago, tuanphan said:

    I see you used different code, not my code

    Remove your code & use this code

    @media only screen and (max-width: 767px) {
        [data-section-id="657f778af1a704689bdfd139"] {
            min-height: unset !important;
            height: 30vh !important;
        }
    }

    image.png.cdc20196084d1b9da3f7e0bfd6bdad7a.png

    THANKS @tuanphan. It worked but only when using INSET. If I use FULL WIDHT option, the images is croped. Any idea why this happen?

  4. On 10/2/2021 at 6:10 PM, tuanphan said:

    Add to Design > Custom CSS

    /* Resize mobile banner */
    @media screen and (max-width:767px) {
    [data-section-id="6151fe5467f3dc22b6e908f7"] {
        min-height: unset !important;
        height: 35vh;
    }
    }

     

    HI @tuanphan, thank you for this code. I've used it on my home page but still cant make the image to be widht 100% on mobile, Can you please help?

    URL: www.gastonduflos.com . It's thefirst banner image

  5. Thanks @tuanphan this code made all of the buttons full black on mobile.

    I do want them to look light grey like in the desktop version , my problem is with the hover effect colour. It remains active once it has been selected. I want it to be black, like the ADD TO CART BUTTON, but only the selected button and hover effect for the selected button on mobile. Can we do this? Thank you!

     

     

    Thank you so much!

    My website: https://www.gastonduflos.com/shop/p/bondi-beach-print-ap001

    Thank you as always! @tuanphan

    Screenshot 2023-10-24 at 8.59.38 pm.png

  6. Hi everyone, 

    I need a bit help with my product page when on mobile.

    I use buttons to select variants, and for default it has an hover effect, I'm ok with the effect when using it on desktop. But on mobile, it does something weird, where the hover effect colour remains active once it has been selected. I want it to be black, like the ADD TO CART BUTTON.

    So my question is, is there any way to deactivate or change the colour of the hover effect for VARIANTS ON MOBILE ONLY?

    Thank you so much!

    My website: https://www.gastonduflos.com/shop/p/bondi-beach-print-ap001

    Thank you as always! @tuanphan

    IMG_6868.jpg

    IMG_6869.jpg

  7. 6 hours ago, tuanphan said:

    Use this code

    /* Masonry one item on mobile */
    @media screen and (max-width:767px) {
    	.gallery-masonry-wrapper.gallery-masonry-list--ready {
        height: auto !important;
    }
    figure.gallery-masonry-item {
        position: relative !important;
        width: calc(100% - 40px) !important;
        transform: unset !important;
        margin-left: 20px;
        margin-right: 20px;
    }
    .gallery-masonry-item-wrapper {
        height: auto !important;
    }
    .gallery-masonry .gallery-masonry-item[data-loaded] img {
        width: 100% !important;
    }
    .gallery-masonry {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    }

     

     

    Hi @tuanphan thank you very much for your assistance. Unfortunately didn't work! 

    My web is: https://www.gastonduflos.com/portfolio/4-pines-mural-design

    Screenshot 2023-10-03 at 9.25.42 pm.png

  8. On 10/1/2023 at 8:01 PM, tuanphan said:

    Add this CSS under

    .product-mark.sold-out {
        white-space: nowrap;
        border-radius: 0 !important;
        height: auto !important;
        width: auto !important;
        display: inline-block !important;
    }

    image.png.0732f505d9aed5b2b84cdec2af3a7565.png

     

    Thanks @tuanphan any idea why the text on the product page is dark grey and in the shop page is white? Please see the image you attached above.

    Page: https://www.gastonduflos.com/shop/p/sea-of-dreams


    I'd like both texts to be white. This is how the code looks like:

    // Sold Out Badge in shop page and product page //
    .view-list .product-mark.sold-out {
        background: #121212 !important;
        color: white !important;
     position: absolute;
        top: 10px;
        right: 10px;
        display: inline-block;
        padding: 15px;
      border-radius: 50%;
        width: 55px;
        height: 55px;
      justify-content: center;
      align-items: center;
      text-align: center;
      display: flex;
      
    }
    .view-item .product-mark.sold-out {
        background: #121212 !important;
        color: #white !important;
        display: inline-block;
        padding: 15px;
      justify-content: center;
      align-items: center;
      text-align: center;
      display: flex;
    }
    
    .product-mark.sold-out {
        white-space: nowrap;
        border-radius: 0 !important;
        height: auto !important;
        width: auto !important;
        display: inline-block !important;
    }

    Thank you so much!

  9. Thanks @tuanphan I've found a solution:

     

    // Product Variant Button (Full Width and Stacked) - Ghost //
    
    .ProductItem-details .variant-radiobtn-wrapper label {
      text-align: center;
      margin: 5px 0px;
      display: block !important;
      width: 100% !important;
    }
    
    /* Product variants widht button on mobile */
    @media screen and (max-width:767px) {
    .product-variants {
        width: 100% !important;
    }
    }
    
    /* Add to cart button on mobile */
    @media screen and (max-width:767px) {
    .ProductItem-details-checkout .sqs-add-to-cart-button-wrapper, .ProductItem-details-checkout .sqs-add-to-cart-button-wrapper div {
        width: 100% !important;
    }
    }

     

  10. On 4/10/2021 at 6:21 PM, tuanphan said:

    Hi. Add to Design > Custom CSS

    /* Masonry one item on mobile */
    @media screen and (max-width:767px) {
    	.gallery-masonry-wrapper.gallery-masonry-list--ready {
        height: auto !important;
    }
    figure.gallery-masonry-item {
        position: relative !important;
        width: 100% !important;
        transform: unset !important;
    }
    .gallery-masonry-item-wrapper {
        height: auto !important;
    }
    .gallery-masonry .gallery-masonry-item[data-loaded] img {
        width: 100% !important;
    }
    .gallery-masonry {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    }

     

    Hi @tuanphan can I please also add a 20px margin on both sides of the images? 

    My web is: https://www.gastonduflos.com/portfolio/4-pines-mural-design

  11. Hi @tuanphan I used this customm css on my website and it looks like the images attached.

    Can I have a rectangle instead of a circle like the post from above?
    Can I have the SOLD OUT text all in one line instead of 2 lines?

    Also, dont know why there is more padding under the text on my circle, can we make it look with even amount of space on all sides of the rectangle?

    My shop page is: www.gastonduflos.com/shop

    Thank you so much!

     

    Screenshot 2023-09-28 at 10.56.45 am.png

    Screenshot 2023-09-28 at 10.56.54 am.png

  12. Hi everyone,

    I need some help with my product page on mobile, if that's okay. I've attached a screenshot of my website and a screenshot of how I would like it to look.

    My main problem here is, can I have the ADD TO CART BUTTON and variant options look more like the image attached, full width? Can I also hide the quantity button? Most of the time, my customers will buy only one piece, and if they want one more, they can adjust it in the shopping cart.

    Thank you so much!

    IMG_6600.jpg

    Screenshot 2023-09-27 at 1.24.21 pm.png

  13. On 7/21/2023 at 8:58 PM, tuanphan said:

    Use this CSS code

    body.view-item .tag-sold-out:after {
        display: none;
    }
    body.view-item .tag-sold-out .ProductItem-gallery-slides-item:before {
        content: "Sold Out";
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #ff593c;
        padding-left: 10px;
        padding-right: 10px;
        color: #fff;
        font-weight: 600;
        font-size: 15px;
    }

    image.thumb.png.d0bd41a01555f2dcca05ca5219b4e16e.png

    Thank you so much! It looks awesome!

  14. Hi there, I am trying to send the customers that sign up to my mailing list at checkout to MAILER LITE. Is there any way to do this automatically?

    I tried setting up Mail chimp, Zapier from there to Mailer Lite, but for some Mailer Lite is not receiving the contacts. So I was wondering if there is an easier way to send contacts from Squarespace to Mailer Lite?

    Thank you!

  15. hi @tuanphan thank you so much. I've done that. The problem is that the code is for all headings and paragraphs. But the ones that are missing are the MISCELLANEOUS, like this ones: List price, list status, limited availability label font, sold out, the menu with the collections in shop page,  variant fields when in product shop page, add to cart, sign up buttom on footer, first name and last name in contact page. 

×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.