Jump to content

Beyondspace

Circle Member
  • Posts

    10,143
  • Joined

  • Last visited

  • Days Won

    80

Posts posted by Beyondspace

  1. 13 minutes ago, CoralJuneDesigns said:

    I added CSS to add a boarder around my navigation however the cart element has moved under the navigation and I would preferably like it in line or above in the right corner, Any tips would be appreciated. I have added an image, and the code used was:

    /* Fullwidth navigation border*/
    .header-announcement-bar-wrapper {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .header-display-desktop {
        flex-direction: column;
    }
    .header-title-nav-wrapper {
        flex: 0 0 100% !important;
        margin-right: auto;
        width: 100% !important;
    }
    nav.header-nav-list {
        display: flex;
        width: 100%;
        border-top: 1px solid white;
        border-bottom: 1px solid white;
    }
    .header-nav-item a {
        line-height: initial;
        padding-top: 10px !important;
        padding-bottom: 10px !Important;
    }
    .header-nav-item {
        border-left: 1px solid white;
        border-right: 1px solid white;
        margin: 0 !important;
        padding-left: 1vw;
        padding-right: 1vw;
        margin-left: -1px !important;
    }

    Screenshot 2024-04-18 at 13.52.37.png

    Can you share your URL so I can take a look?

  2. 11 minutes ago, hello_studiofrey said:

    Hello,

    I would like to add a hover effect on the image block to display the project title. Basically the same thing that works well on the Portfolio page. I haven't found in the forum if anyone has figured out a solution using custom code?

    I am attaching a place on the homepage where I would like to have this hover effect inserted. Also, I'm attaching the same effect that works well on the Portfolio page. I would basically like to achieve the same thing on the homepage. 

    https://dreisicht.squarespace.com/
    pw: SF2024

    Thank you very much for your help!
    Natasa

    Screenshot 2024-04-18 at 14.55.43.png

    Screenshot 2024-04-18 at 14.59.03.png

    You can try adding to Home > Design > Custom Css

    section[data-section-id="661e9aa92a1d6413ca9b2fdb"] .sqs-block.image-block.sqs-block-image .sqs-block-image-link:after {
      content: '';
      display: block;
      background: rgb(218,213,206);
      opacity: 0;
      position: absolute;
      top:0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    
    section[data-section-id="661e9aa92a1d6413ca9b2fdb"] .sqs-block.image-block.sqs-block-image .sqs-block-image-link:hover:after {
      opacity: 0.6;
      transition: opacity 0.5s;
    }

    Here is my testing

    image.thumb.png.0fe9b5a5f58c3e5f062520327fed63f2.png

    Let me know how it works on your site

  3. 6 hours ago, Oddish said:

    Hi, is it possible for the caption/title of gallery images to sit on top of the image in a grid:simple layout?

    Ideally, it would sit bottom right hand corner of the image (with some margin) and with a coloured background behind the title text so its easy to read.

    Any help with custom code would be appreciated!

    Can you share your URL to the section which you want to add caption/title? We can check it easier

  4. 6 hours ago, David_Cass said:

    Hello, 

    Is there a CSS code that might help me align the text and image sections of an Image Card? The in progress webpage here will feature several image cards, all with different sizes of images and lengths of texts. To keep the page tidy, I'd like the tops and bottoms to line up. Maybe there could be a "squeeze" into the image for those in which the image is smaller than the text box? Thank you!

    Screenshot 2024-04-18 at 09.31.58.png

    Can you share your URL so I can take a look?

  5. 1 hour ago, moonlitdesign said:

    Hi there, i have a float newsletter block at the bottom of my homepage, i have reduced the width / length / size of the form fields, but now i am left with a large padding / margin / gap / distance between each field. 

    is there a way to reduce / decrease this so it's like a 5px gap ?

    thanks! 

     www.moonlitdesign.uk/home-old

    Do you mean this block?

    image.thumb.png.5382152ed088b028c3e36643b64ee98c.png

    I check that it is fine now. Have you figured it out?

  6. 1 hour ago, koocm said:

    I'd like to create anchor links or navigation links for the main menu that directly link to each expanded view of each accordion item.

    Is there a way to do this? I've tried searching the forums and documentation but haven't found a clear solution yet. Any help or guidance would be greatly appreciated!

     

    Screen Shot 2024-04-18 at 9.01.15 pm.png

    Can you share your URL to this page so I can check it easier?

  7. 37 minutes ago, kojj said:

    Hello,

    Do you know if it's possible to disable the link on the cover image of an article and keep only the link that directs to the article in the article's title?

    so you want to disable clicking on the thumbnail on blog post's thumbnail on blog page?

    image.thumb.png.e448b458a063b2c77dbfdccd63c8ae6c.png

  8. 2 hours ago, SMpi said:

    I am learning code and I am trying to do the following on the product pages

    1. move the bread crumbs above the image on web navigation

    2.  Add breadcrumbs to the mobile navigation above the image (without adding text blocks ) on product page

    3. reduce the image size on mobile nav product page

    4. move the X on mobile nav over to the left a bit

    5. Add word "Menu" above the X on mobile nav

     

    https://ottawa-privateinvestigator.com/piservicebooking/p/bugsweep-tscm

     

     

    Any guidance would be appreciated!!!

     

    Thank you!! 🙂

    Screenshot 2024-04-16 at 11.15.15 AM.png

    Screenshot 2024-04-16 at 11.16.13 AM.png

    Screenshot 2024-04-16 at 11.18.07 AM.png

    Move the breadcrumbs on web view

    .pdp-form-wrapper .ProductItem-nav {
      position: absolute;
      top: 0;
      left: 0;
      z-index:9999;
      padding-left: calc(4vw + 9.6px);
    }
    .pdp-layout-wrap-around .pdp-gallery-images {
      padding-top: 85px;
    }

    image.thumb.png.1b582c683634076853ceda8c181f8f44.png

  9. 1 hour ago, nitzin said:

    Hi,

    On my current website, I have a custom header which works great on desktop but the 3 bars on the mobile display is too far to the right (at the edge of the screen and not on the white pill shape). Is there any way to fix this? Here is the current code I'm using for the navigation:
     

    .header-title-nav-wrapper {
      border-background: #FFFFFF}

    @pilo-bar-background: #FFFFFF;
    @pilo-bar-padding: 5px 25px;
    @pilo-bar-border: 0px solid #000;
    @pilo-bar-radius: 30px;

    .header-title-nav-wrapper {border: @pilo-bar-border; background: @pilo-bar-background; padding: @pilo-bar-padding; border-radius: @pilo-bar-radius;}

    Here is the password for the site:
    raccoon-vuvuzela-kxxa.squarespace.com
    Password: SMJ

    Have you fixed it yet?

    image.thumb.png.b27237a93d5f52118502aed3ae31860f.png

    I check that it works properly on my device

  10. I believe you are looking for a way to detect if the current page is in iframe or not. Paste this code into Footer injection and use the selector .sqs-in-frame to target your document and tweak it accordingly

    <script>
    document.addEventListener('DOMContentLoaded', function() {
        if (window !== window.parent && !document.body.classList.contains("sqs-edit-mode")) {
            document.body.classList.add('sqs-in-iframe');
        }
    });
    </script>

     

  11. On 6/7/2023 at 1:00 AM, HadiAlexandre said:

    Is it possible to access an image that is in my gallery from a javascript that I injected in your code?

    What is the url for the images in my gallery?

    You can right click on the image on Assets Library and choose Copy Image URL 

    image.thumb.png.3cdd865fa98002e886a03d3305f5d965.png

  12. On 12/8/2023 at 6:50 PM, Matthias39682 said:

    Did someone already find a solution for this? 

    Thanks a lot!

    Matthias

    Squarespace proceed all uploaded images and created 7 version of them, the max resolution images you can download from Squarespace is 2500px, regardless how big your image is.

    Regarding to download url, our plugin Lightbox Studio support download button out of the box, you can insert a Gallery block: Slideshow on your site and let user download images from the lightbox view

    image.thumb.png.0aec3d6c9a24d3a5fe79ee9ba9616495.png

  13. On 12/15/2023 at 4:50 PM, Atefeh said:

    Hello,

    I recently created a website for my artist friend. We decided not to use the gallery option because we weren't satisfied with the available choices. Instead, we used image blocks.

    Now, I want to add captions specifically for the lightbox feature. When visitors click on her pictures, they should be able to read the captions.

    As you can see in the screenshots, there doesn't appear to be an option for inline captions or caption editing for images.

    Could you please help me with this? I would greatly appreciate your assistance.

    Screenshot 2023-12-13 194933.png

    Screenshot 2023-12-15.png

    With Lightbox Studio, you can show caption on your images and connect these into single lightbox gallery as well, please check out the dedicated URL for your site below

    PLAYGROUND

  14. On 12/28/2023 at 2:02 AM, MynameisJen said:

    I have the same question - can someone please help with this? I am trying to create a blog entry and considering they have blog post pages, the layout options seem ridiculously limited. Am I expected to re-upload all the images that I already put in the asset library just to be able to post multiple images in a single section?

    Use Summary Block to reuse gallery images is actually a good method, I also had a dedicated post about this , but with the latest Classic Gallery block, you can reuse images in the Gallery block too!

  15. On 12/15/2022 at 8:22 AM, harveylm said:

    When I put a gallery up the "use from existing collections" does not sync with the asset libraries and has nothing. Why is this?

    On 7.1 Use Existing Gallery is disabled by default, so it always empty when you select that Option

×
×
  • 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.