Jump to content

Widle

Circle Member
  • Posts

    153
  • Joined

  • Last visited

Posts posted by Widle

  1. try this code using important Properties

    @media only screen and (max-width: 600px) {
     .ProductItem-nav .ProductItem-nav-breadcrumb, .ProductItem-nav .ProductItem-nav-pagination {
        display: block!important;
        color: black!important;
        padding: 37px 2px;
    }
    }

     

    Screenshot 2024-07-24 170628.png

  2. Try this code in Website tools >> custom css

     

    @media only screen and (max-width: 600px) {
     .ProductItem-nav .ProductItem-nav-breadcrumb, .ProductItem-nav .ProductItem-nav-pagination {
        display: block;
        color: black;
        padding: 37px 2px;
    }
    }

     

     

  3. Hello @VeeBee


    Please consider using this style option to modify the mobile view I'll send you a screenshot

    image.thumb.png.211d66d336465dbc544f7e29bfc0d3ba.png

     

    Alternatively, please use this CSS code.

    .Mobile-menu {
        background-color: #your-color-code;
    }
    .Mobile-menu .Mobile-nav-item {
        font-size: your-desired-size; /* Example: 16px */
    }
    .Mobile-menu {
        background-image: url('your-image-url');
        background-size: cover; 
    }
    .Mobile-menu {
        padding-top: 10px; 
    }
    
    .Mobile-nav-item {
        margin-top: 0; 
    }
    .contact-button {
        display: block;
        padding: 10px;
        background-color: #your-color;
        color: #fff;
        text-align: center;
        margin-top: 20px; /* Adjust as needed */
    }
    

    Javascript code

     

    <script>
    document.addEventListener('DOMContentLoaded', function() {
        var menu = document.querySelector('.Mobile-menu');
        if (menu) {
            var contactButton = document.createElement('a');
            contactButton.href = '#contact'; // Adjust link as needed
            contactButton.textContent = 'Contact';
            contactButton.className = 'contact-button'; // Add class for styling
            menu.appendChild(contactButton);
        }
    });
    </script>

     

  4. hello @SCAgency

    Inspect Existing Styles: Utilize your browser’s Developer Tools (right-click the element and select "Inspect") to review and identify any existing borders or outlines applied through CSS.

    Override with Custom CSS: Apply the following CSS to remove existing borders and apply your desired border

    .your-element-class {
      border: none !important;
      outline: none !important;
    }
    
    /* Apply custom border */
    .your-element-class {
      border: 2px solid #yourcolor;
    }

    Cover with Background Layers: If borders remain visible, use a background layer to obscure them:
     

    .your-element-class {
      position: relative;
    }
    
    .your-element-class::before {
      content: "";
      position: absolute;
      top: -2px; 
      left: -2px;
      right: -2px;
      bottom: -2px;  
      background-color: #yourcolor; 
      z-index: -1;
    }

     

  5. hello @MoeTalks

    It seems you're having trouble uploading or linking a video with a song on Squarespace. Here are some steps to troubleshoot and resolve the issue:

    1. Check Video Format: Ensure the video format (e.g., MP4) is supported by Squarespace.
    2. Verify the Link: Confirm the video link is correctly formatted and accessible. Ensure privacy settings on platforms like YouTube or Vimeo allow embedding.
    3. Replace the Link: Try using a different link or re-upload the video.
    4. Clear Cache: Clear your browser's cache and cookies or try an incognito window or a different browser.
    5. Check Size and Duration: Ensure the video meets file size and duration limits.
    6. Check for Issues: Verify if Squarespace is experiencing technical problems by checking their Status Page.
    7. Different Device/Network: Try uploading from another device or network.

    If changing the song is an option and you suspect it's causing the issue, try using a different track. If the problem persists, consider reaching out to Squarespace Support for further assistance.

  6. hello @CCCathedral

    To resolve issues with image uploads on Squarespace, please follow these troubleshooting steps:

    1. Check the File Name: Ensure the image file name is unique. Conflicts can occur if the file name matches that of an existing image.

    2. Clear Browser Cache: Clear your browser's cache and cookies. Alternatively, try uploading the image in an incognito window.

    3. Rename the File: Rename the image file on your computer and attempt the upload again.

    4. Check for Existing URLs: Navigate to the location on your Squarespace site where the image might have been previously uploaded. Verify if an image with the same URL or path exists and remove it if necessary.

    5. File Size and Format: Confirm the image is in the correct format (JPEG) and within Squarespace's size limits. Large files can sometimes cause upload issues.

    6. Check Squarespace Status: Occasionally, Squarespace may experience technical difficulties affecting uploads. Check the Squarespace Status Page for any ongoing issues.

    If these steps do not resolve the issue, try uploading the image from a different device or network to rule out any local network or device-specific problems.

  7. hello @gafitz

    Please update your CSS with the following:
     

    
    .sqs-lightbox-image, .lightbox-image {
        max-width: 90vw; 
        width: 90vw; 
        height: auto;
        margin: 0 auto; 
    }
    
    
    .sqs-lightbox-container, .lightbox-container {
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .sqs-lightbox-overlay, .lightbox-overlay {
        background: rgba(0, 0, 0, 0.8); 
    }

     

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