Jump to content

HoaLT

Member
  • Posts

    68
  • Joined

  • Last visited

  • Days Won

    1

Reputation Activity

  1. Like
    HoaLT got a reaction from Champion in Remove White Space Beyond Squarespace Settings   
    You can set the addition figuration in Design > Custom CSS
    #article- { padding-bottom: 0; } .item-pagination { padding-top: 15px; }  
  2. Like
    HoaLT got a reaction from Beyondspace in Remove White Space Beyond Squarespace Settings   
    The space is created by the padding of conten-wrap. You can try adding in Design > Custom CSS
    .content-wrapper { padding-bottom: 0 !important; } Hope that it is useful for you
  3. Like
    HoaLT got a reaction from Beyondspace in Remove White Space Beyond Squarespace Settings   
    Here is the result after remove padding

  4. Like
    HoaLT got a reaction from Beyondspace in Remove White Space Beyond Squarespace Settings   
    You can set the addition figuration in Design > Custom CSS
    #article- { padding-bottom: 0; } .item-pagination { padding-top: 15px; }  
  5. Like
    HoaLT got a reaction from Beyondspace in Change product title font size on the store page   
    It would be easier to check your issues if you can share your site with the password protected!
  6. Like
    HoaLT got a reaction from Beyondspace in Different Banners and Images on Product Category Pages   
    Can you share your site with the password protected for easier checking?
  7. Like
    HoaLT got a reaction from Beyondspace in Order Confirmation Page Issues   
    I can not access the page with the problem you described above. Can you share the direct link to this page?
  8. Like
    HoaLT got a reaction from Beyondspace in Link to a section - Keep the section align to the bottom of the page   
    Do you mean that when you click a button, page will load to the section linked by button?
  9. Love
    HoaLT got a reaction from taijiterasakistudio in Shorten distance between header and body on mobile   
    Try this in Design > Custom CSS
    @media only screen and (max-width: 768px) { #headerWrapper header { padding: 0 0 10px 0; } }  
  10. Like
    HoaLT got a reaction from taijiterasakistudio in Shorten distance between header and body on mobile   
    The result should be like this

  11. Like
    HoaLT got a reaction from Beyondspace in How do I make my Home page photo appear full screen on mobile phones   
    Try the following configuration in Desin > Custom Css
    @media only screen and (max-width: 768px) { .homepage [data-slide-id="610c29e83f1f825f0dce7cfa"] img { height: 100vh; width: auto; position: relative; transform: translateX(-50%); left: 50%; } }  
  12. Like
    HoaLT got a reaction from Beyondspace in Edit Text Mobile Only   
    Try adding space at the beginning and ending of "Your passion"

  13. Like
    HoaLT got a reaction from Beyondspace in Edit Text Mobile Only   
    You can apply the following steps:
    1. Home > Pages > Edit your heading > Set bold for "Your Passion"

    2. Home > Design > Custom CSS
    #block-5441a2f77e4fa42d5289 h1 strong { font-weight: inherit; } @media only screen and (max-width: 768px) { #block-5441a2f77e4fa42d5289 h1 strong { display: block; } } Hope that it is ok for your site!
  14. Like
    HoaLT got a reaction from asa in Site isn't displaying footer on mobile   
    I think so too! hope you enjoy with your site
  15. Like
    HoaLT got a reaction from Beyondspace in Image URL slug   
    i found out that that url can not be edited since the itemID is the lightbox url id, not the id of img
  16. Like
    HoaLT got a reaction from tuanphan in Different Banners and Images on Product Category Pages   
    Can you share your site with the password protected for easier checking?
  17. Like
    HoaLT got a reaction from creedon in Pause Summary Carousel Auto-Rotation on Hover   
    You need to modify your javascript:

    Replace with the following script
    $(document).ready(function() { try { var container = Y.one("#block-d3fe1f534bd0f0631332"); var gallery = Y.Squarespace.GalleryManager.getGalleryByContainer(container); gallery.setAttrs({ "autoplay": true, "autoplayOptions": { "timeout": 6000, /*make this higher to decrease speed, lower to increase it*/ "randomize": true, } }); container._node.addEventListener("mouseover", () => { gallery.setAttrs({ "autoplay": false }) }) container._node.addEventListener("mouseout", () => { gallery.setAttrs({ "autoplay": true, "autoplayOptions": { "timeout": 6000, "randomize": true, } }) }) } catch (e) { console.error("Could not configure Gallery autoplay.", e); } }); Hope work well for you
  18. Like
    HoaLT got a reaction from BriWau in Help with Mobile Footer Custom CSS   
    1st Point:
    You can try the Design > Custom CSS with the following setting
    @media only screen and (max-width: 768px) { #block-yui_3_17_2_1_1632274074310_17542 .sqs-block-button-container--right { text-align: center; } #block-yui_3_17_2_1_1632274074310_17542 a { padding: 1em 1.404em; } [data-section-id="614a87c7f80dc06b128e4478"] .content-wrapper { padding-bottom: 0 !important; padding-top: 25vmax !important; } section[data-section-id="614a87c7f80dc06b128e4478"] { height: 36vh !important; } section[data-section-id="614a87c7f80dc06b128e4478"] .section-background { bottom: unset; } }
  19. Like
    HoaLT got a reaction from jackpopsicle in Add multiple buttons to Header Nav   
    Is it that you mean?

  20. Like
    HoaLT got a reaction from tuanphan in Remove White Space Beyond Squarespace Settings   
    You can set the addition figuration in Design > Custom CSS
    #article- { padding-bottom: 0; } .item-pagination { padding-top: 15px; }  
  21. Like
    HoaLT got a reaction from tuanphan in Help with Mobile Footer Custom CSS   
    1st Point:
    You can try the Design > Custom CSS with the following setting
    @media only screen and (max-width: 768px) { #block-yui_3_17_2_1_1632274074310_17542 .sqs-block-button-container--right { text-align: center; } #block-yui_3_17_2_1_1632274074310_17542 a { padding: 1em 1.404em; } [data-section-id="614a87c7f80dc06b128e4478"] .content-wrapper { padding-bottom: 0 !important; padding-top: 25vmax !important; } section[data-section-id="614a87c7f80dc06b128e4478"] { height: 36vh !important; } section[data-section-id="614a87c7f80dc06b128e4478"] .section-background { bottom: unset; } }
  22. Like
    HoaLT got a reaction from tuanphan in Pause Summary Carousel Auto-Rotation on Hover   
    You need to modify your javascript:

    Replace with the following script
    $(document).ready(function() { try { var container = Y.one("#block-d3fe1f534bd0f0631332"); var gallery = Y.Squarespace.GalleryManager.getGalleryByContainer(container); gallery.setAttrs({ "autoplay": true, "autoplayOptions": { "timeout": 6000, /*make this higher to decrease speed, lower to increase it*/ "randomize": true, } }); container._node.addEventListener("mouseover", () => { gallery.setAttrs({ "autoplay": false }) }) container._node.addEventListener("mouseout", () => { gallery.setAttrs({ "autoplay": true, "autoplayOptions": { "timeout": 6000, "randomize": true, } }) }) } catch (e) { console.error("Could not configure Gallery autoplay.", e); } }); Hope work well for you
  23. Like
    HoaLT got a reaction from tuanphan in Carousel Image Gallery appearing Off Center on Desktop   
    Here is the result

  24. Like
    HoaLT got a reaction from tuanphan in Edit Text Mobile Only   
    You can apply the following steps:
    1. Home > Pages > Edit your heading > Set bold for "Your Passion"

    2. Home > Design > Custom CSS
    #block-5441a2f77e4fa42d5289 h1 strong { font-weight: inherit; } @media only screen and (max-width: 768px) { #block-5441a2f77e4fa42d5289 h1 strong { display: block; } } Hope that it is ok for your site!
  25. Love
    HoaLT got a reaction from JerryBez in How do I make my Home page photo appear full screen on mobile phones   
    You can get some reference in this post with your cover pages
     
×
×
  • 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.