Jump to content

LukeDesign

Member
  • Posts

    77
  • Joined

  • Last visited

Posts posted by LukeDesign

  1. I recently discovered the ResponsivelyApp in this forum and think it’s an incredible tool. However, I noticed that it includes older iPad models but doesn’t have the more recent ones. Some elements of my website don’t display well on these older models, which would require major adjustments. I’m curious—how many of you are still considering these older devices in your designs? Also, does anyone know when ResponsivelyApp might update to include newer devices? Thanks!

     
     
     

     

  2. @tuanphan, somewhat related to these gallery image blocks, I'm trying to create rounded corners for these gallery (grid) image blocks, but the code that works on other gallery (slideshow) blocks isn't having the same effect on these grids. Below is the code I'm using. When applied, it only rounds the top corners, and it seems like the code is targeting the grid containers rather than the images themselves.

    Page: https://www.lucasano.com/portfolio

    PW: test123!

    #block-yui_3_17_2_1_1727538038834_44295,
    #block-429fdbe82472243ad314,
    #block-73f2e49679d755fcc9b5,
    #block-1d06d1204f29b9d0a28b,
    #block-d1c439e37d2efdbb0a40,
    #block-27061213a0ad884acefe {
        border-radius: 10px; 
        overflow: hidden; 
    }

     

  3. On 10/1/2024 at 7:15 AM, LukeDesign said:

    @tuanphan, hoping you can help me with another instance of the animated color effect over image. 

    These are gallery image blocks (set to grid):

    https://www.lucasano.com/portfolio

    PW: test123!

    Here is the current code I am using which is not working:

    */
    div#block-yui_3_17_2_1_1727538038834_44295
    div#block-429fdbe82472243ad314,
    div#block-73f2e49679d755fcc9b5,
    div#block-1d06d1204f29b9d0a28b,
    div#block-d1c439e37d2efdbb0a40,
    div#block-27061213a0ad884acefe {
    .sqs-image-content:after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 101%;
        z-index: 1;
        background: -moz-linear-gradient(left, rgba(200, 150, 50, 0.5) 0%, rgba(200, 150, 50, 0) 100%);
        background: -webkit-linear-gradient(left, rgba(200, 150, 50, 0.5) 0%, rgba(200, 150, 50, 0) 100%);
        background: linear-gradient(to right, rgba(200, 150, 50, 0.5) 0%, rgba(200, 150, 166, 0) 100%);
        -webkit-transition: all 1s ease;
        -moz-transition: all 1s ease;
        transition: all 1s ease;
    }
    &:hover .sqs-image-content:after {
        right: 0;
    }
    }

    @tuanphan, are you able to assist with this code? Thank you!

     

  4. @tuanphan, hoping you can help me with another instance of the animated color effect over image. 

    These are gallery image blocks (set to grid):

    https://www.lucasano.com/portfolio

    PW: test123!

    Here is the current code I am using which is not working:

    */
    div#block-yui_3_17_2_1_1727538038834_44295
    div#block-429fdbe82472243ad314,
    div#block-73f2e49679d755fcc9b5,
    div#block-1d06d1204f29b9d0a28b,
    div#block-d1c439e37d2efdbb0a40,
    div#block-27061213a0ad884acefe {
    .sqs-image-content:after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 101%;
        z-index: 1;
        background: -moz-linear-gradient(left, rgba(200, 150, 50, 0.5) 0%, rgba(200, 150, 50, 0) 100%);
        background: -webkit-linear-gradient(left, rgba(200, 150, 50, 0.5) 0%, rgba(200, 150, 50, 0) 100%);
        background: linear-gradient(to right, rgba(200, 150, 50, 0.5) 0%, rgba(200, 150, 166, 0) 100%);
        -webkit-transition: all 1s ease;
        -moz-transition: all 1s ease;
        transition: all 1s ease;
    }
    &:hover .sqs-image-content:after {
        right: 0;
    }
    }

     

  5. Site URL: https://www.lucasano.com/test6

    Hello! 

    I am looking to display a slideshow gallery vertically while also be able to adjust the display image size to match my horizontal galleries. I am using a Lightbox plugin (Beyondspace Lightbox Studio) which requires using a lightbox-enabled Slideshow block to work as instructed by this tutorial

    Here is my website: https://www.lucasano.com/test6

    Password: t3st123

    I’ve attached a screenshot below to illustrate how I’d like the slideshow to be displayed. The vertical gallery block in question is on the bottom left, and to the right is an image block I added to represent the desired size for the gallery block display. I am essentially wanting to fill in the image to the block.

    In short: I want to mix images with various aspect ratio (3:2 and 2:3) into a custom grid and open separate lightbox galleries upon clicking the images

    Thank you!

    Example.jpg

  6. On 7/20/2024 at 6:43 AM, tuanphan said:

    Use this new code

    section.gdpr-cookie-banner * {
        color: #F9F7F5 !important;
        font-family: "Stevie Sans", sans-serif !important;
        font-size: 12px !important;
        font-style: normal !important;
        font-weight: 200 !important;
        letter-spacing: .7px !important;
        line-height: 150% !important;
    }

     

    Thank you!!

  7. The code below that I’ve been using to style my cookie banner has stopped working, particularly the font color. It worked fine for a month. Can you suggest any changes to fix the issue?

    Site: https://www.lucasano.com/

    .sqs-cookie-banner-v2 p {
        color: #F9F7F5 !important;
        font-family: "Stevie Sans", sans-serif !important;
        font-size: 12px !important;
        font-style: normal !important;
        font-weight: 200 !important;
        letter-spacing: .7px !important;
        line-height: 150% !important;
    }

     

  8. 15 hours ago, creedon said:

    CSS is for styling how things look. It can't do things like lookup information and create new data structures. For that you would need JavaScript, the business plan or above, and custom JavaScript. Assuming it could be done at all. I know of know code that currently does this.

    Thank you. I was able to find some Javascript that achieved what I was looking for. 

  9. 4 hours ago, tuanphan said:

    I just tested again and it still shows fine. Maybe you added to wrong position in CSS code. You can send all code after you added the code?

    image.thumb.png.7334316d448de03e39e510377741085f.png

    I've added the CSS in the Custom CSS under Website Tools. I also tried it in the Page's header injector, but are not working. The below image is what happens:

    image.thumb.png.9d6956bdf16cdfc4c3dffc0bfa82c874.png

    I have a lot of CSS in my Custom CSS - you want me to send all of it?

  10. 1 hour ago, inside_the_square said:

    You'll need some javascript to change the date type; not my specialty but hopefully another Squarespacer can help! For the order, you can use the settings built into Squarespace to set your primary metadata as the date, followed by the category as your secondary metadata. After that, this code will organize them into a column and hide the delimiter:

    .blog-meta-section{
     flex-direction:column
    }
    .blog-meta-delimiter{
     display:none!important
    }

     

    Thank you! For a blog post, is there a way to stack the meta as well - with date on top and category underneath? https://www.lucasano.com/blog-content/template-blog-post

  11. I am building a blog post template that I will use for all my posts. I want to add a “Related Posts” summary block on the bottom using categories. I know how to add a summary block and select categories, but since I am building a template, I would like CSS that can pull up the categories from the current page automatically to display those related posts. 

    Here is the template so far:

    https://www.lucasano.com/blog-content/template-blog-post

    Thanks!

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