Jump to content

tuanphan

Circle Member
  • Posts

    65,570
  • Joined

  • Last visited

  • Days Won

    521

Reputation Activity

  1. Like
    tuanphan reacted to Beyondspace in Change position of Tags and add wording   
    You can use this additional code
    .blog-meta-item.blog-meta-item--tags { display: flex; justify-content: center; } Support me by pressing 👍  or marking as solution if this useful for you
  2. Like
    tuanphan reacted to CassAggett in Quote Block: Hanging quote marks, different color than text?   
    @kaytdefever give this a go:
    // QUOTE BLOCK // // color of quote marks .sqs-block-quote blockquote span { color: red; } .sqs-block-quote blockquote span:first-child { display: inline-block; margin-left: -10px; // space on left of first quote margin-right: 2px; // space on right of first quote } // hide dash .sqs-block-quote .source::first-letter { color: transparent !important; margin-left: -20px; } // source name .sqs-block-quote .source { padding-top: 10px; // space above name text-align: left; font-size: 14px; } // source title .sqs-block-quote .source span { display: block; padding-top: 10px; // space above title font-size: 10px; // size of title text-transform: uppercase; } For the title section to work with the above code, you'll need to enter <span> tags around the title/company name, like this:

    There's some kind of limitation with Firefox for the treatment of the dash (it's set up in the Squarespace HTML rather than CSS) - I checked in Chrome and it's transparent there, but not FF.
  3. Like
    tuanphan reacted to Gonz in Can I make a full screen carousel with each slide having multiple images?   
    Oh. Don't know what happened. It kinda got uploaded twice and the first one got messed up.
    Doesn't matter it was the same as the this one: 
  4. Like
    tuanphan reacted to Beyondspace in Assets Library downloader   
    Bring the ability to download the images from your Assets Library quickly without navigating away from the files container.
    Support download single image or selected images from the viewer
    - Only images download support
    - Work in detail list view
    - Compatible with all Squarespace plan
    - Free to use
    Check it on this page 🔗
     
    Created with ❤️
    BeyondspaceStudio
    Squarespace Circle Member

  5. Like
    tuanphan got a reaction from PerfectCaptureBooth in Pages/Folder items not showing up on mobile navigation   
    Change it to this
    /* hide items on mobile */ [data-folder="root"]>div:first-child>div:first-child>div:nth-child(2), [data-folder="root"]>div:first-child>div:first-child>div:nth-child(3) { display: none !important; } </style>  
  6. Like
    tuanphan reacted to BigBangThinking in Video on course background color   
    Solved this by changing the video lesson from a video one, to not a video one. Then added the video inside the lesson content as a normal video.
  7. Like
    tuanphan reacted to Powpal in Hover background link & text alignment   
    Awesome Thank you ! 
    It works perfectly !
  8. Like
    tuanphan reacted to ShortAngryViking in Unable to change the font size on blog post titles   
    I managed to change the blog post title size in Section Styles - go to Fonts > Assign Styles > scroll down to Blog Post then click Title. It's automatically set to your header font, but I managed to change the size of H1 H2 H3 H4 and H5 to suit my site style.  
    hope this helps 😃 
  9. Like
    tuanphan got a reaction from garlandehaney in Customize hover color/effect on Header Button & Form Send Button   
    Use this CSS code
    #siteWrapper #block-yui_3_17_2_1_1696453832419_14975 .form-button-wrapper .button:hover { background-color: white !important; color: #f1f !important; }
  10. Thanks
    tuanphan got a reaction from melody495 in How to move primary meta data (categories) below blog title   
    Use this CSS code, you can adjust number in the code to change positions of 3 elements
    .blog-basic-grid--text { display: flex; flex-direction: column; } .blog-excerpt { order: 1 !important; } .blog-title { order: 2 !important; } .blog-meta-section { order: 3 !important; }  
  11. Love
    tuanphan got a reaction from livayan in Sub-menu of burger menu   
    Use this code instead
    /* hide items on mobile */ [data-folder="root"]>div:first-child>div:nth-child(-n+7) { display: none; }  
  12. Love
    tuanphan got a reaction from GastonDuflos in MOVING THE SOLD OUT BADGE FOR 7.1 (PRODUCT STATUS)   
    Because your color is incorrect, remove # symbol, it should be color: white !important;

  13. Love
    tuanphan got a reaction from GastonDuflos in Masonry Grid to display one column on mobile only?   
    The code is missing 2 symbols, you can use this new 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; } }  
  14. Like
    tuanphan got a reaction from dotandpeg in How to change logo on specific pages in 7.1?   
    Add to Page Header (page where you want to change logo)
    <style> .header-title-logo img { visibility: hidden; } .header-title-logo a { background-image: url(https://beaverhero.com/wp-content/uploads/2019/07/coffee-beans-1082116_640-min.jpg); background-size: cover; background-repeat: no-repeat; background-position: center center; } </style>  
  15. Like
    tuanphan got a reaction from sophdooley in How to change header style on ONE PAGE ONLY   
    Add this code under
    <style> header#header { background-color: white !important; } </style>  
  16. Like
    tuanphan got a reaction from Yannis in Add a secondary button in product page   
    Some options to achieve this
    If all products use button with same link, just add it to Footer or add to Not Linked Page, then we will give code to move it next to Add to Cart on all products
    If use different button, just add a Button Block in Additional Info > Then share link to a product, we will give the code to move its position.
    With Example Above, they use Standard Page, not Products, so they can add anything.
     
  17. Thanks
    tuanphan got a reaction from Aurora in Style fields to only capitalize the first word   
    Add this code to Last Line in Website Tools (under Not Linked) > Code Injection > Footer
    <script> jQuery(document).ready(function($){ $('input.newsletter-form-field-element[type="text"]').attr('placeholder','First name'); $('input.newsletter-form-field-element[type="email"]').attr('placeholder','Email address'); }) </script>
  18. Thanks
    tuanphan got a reaction from Aurora in Style fields (and metadata) to only capitalize the first word   
    Ah got it, understand why it won't work on homepage, you try adding this line to top of Code Injection > Header
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>  
  19. Like
    tuanphan got a reaction from LaureneRobertStudio in Testimonials - Arrows on the outside   
    Hi,
    Move this?

  20. Like
    tuanphan reacted to mormorchu in How to return to the same scroll position when using browser's back button?   
    i shared my way in another post, see if it works for u!
     
  21. Like
    tuanphan reacted to ruthob93 in CSS for changing background images from grayscale to color on hover   
    Thank you so much! That worked!
    Really appreciate it
  22. Like
    tuanphan reacted to GPUNK in Hovering Captions on Images in Gallery w/ Masonry Grid   
    got it, thank you so much!!!!!
     
  23. Like
    tuanphan got a reaction from DreamrW in Moving the Weglot widget to the top of the page   
    Add to bottom of Code Injection > Footer
    <script> $(window).scroll(function(){ var scroll = $(window).scrollTop(); if(scroll > 150){ $('div.weglot-container').addClass('hide'); } else{ $('div.weglot-container').removeClass('hide'); } }); </script> <style> .hide { visibility: hidden !important; } </style>  
  24. Like
    tuanphan got a reaction from DreamrW in Header image sit below menu bar   
    I see you fixed by adding a blank section above top section?
  25. Love
    tuanphan got a reaction from ShortAngryViking in Text Blocks Over an Image   
    Hi,
    Do you use 7.0 or 7.1? with 7.1, I guess you can drag text over image?
×
×
  • 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.