Jump to content

melody495

Circle Member
  • Posts

    829
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by melody495

  1. Hi, what type of section are you using? If you don't need a specific functionality from that pre-made section, you could create your own section with more design control.

    If you need to use a pre-made section, can you please share a link to your website so we can help easier. Can you explain more? Where will the button click through to? (internal or external link?) What roll over effect are you looking for?

  2. 4 hours ago, HeatherV said:

    This "New CSS" given above, where does it go in the code? In the SEO Header or Footer? Or elsewhere in the code found within the Themes. Thanks!

    This is the code I'm referring to:

    @media screen and (min-width:901px) {
    img {
        pointer-events: none;
      -webkit-touch-callout: none;
    }
    }

    Hi, CSS goes in Custom CSS. You can find it here: Website -> scroll all the way down to Website Tools -> Custom CSS.

  3. Hi, not sure this is the exact code that is on your website, as the colour references are all blue, not orange. Try to replace with the below code. I added .header-menu-nav-item-content, used after on this selector rather than the a. Because the a is spanning the full width of the screen, that's why the line was long. 

    Try and let me know how it goes.

    Replace this line

    div.header-menu-nav-item a::after {

    with this line (1st line)

    // mobile menu nav item
    div.header-menu-nav-item a .header-menu-nav-item-content::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 100%;
        height: 2px;
        background-color: #43c6ff;
        visibility: hidden;
        opacity: 0;
        transition: opacity .4s;
    }

     

  4. 1 hour ago, MaesMarket said:

    @melody495 Thank you, the sold out padding worked PERFECTLY. Still having problems with side panel. I took screenshot of how I have entered into Custom CSS. Any ideas as to what I am doing wrong?

    Screenshot 2023-11-10 at 10.14.13 AM.png

    Hi, copy my code above. It's font-family 'med', with the single quote. This is because that is how you've loaded the font. You could change your font code to just med instead of 'med', but they need to be used consistently.

    Hope that helps!

  5. Hi, 

    For the categories side panel, try the below

    .products-list .category-item .category-item a {
    	font-family: 'med';
    }

    For Sold Out padding

    .product-lists-item .product-mark.sold-out {
    	margin-top: 10px; // adjust to the amount of space you need
    }

    For the $9.00+, could target using CSS, but I'm not sure if that's the best way to do it. 

  6. 4 hours ago, niteshifte said:

    Thanks for that! That works for one of the calendars but not the other calendar or the gift bag?

    Hi, you can install SquareSpace ID Finder for your browser, example below for chrome

    image.png.506737e9b0edbd8dc7dda48dbe537d66.png

    When you turn it on, you will then be able to find the relevant ID for that specific product you need to remove the sale from

    image.thumb.png.36c535df0c5abb10d7e37fe5dbb49453.png

    You can select multiple of them like this (with the comma)

    div#block-yui_3_17_2_1_1695637693483_52329, #block-95ef6b014537c903a2f1 .sale {
        display: none !important;
    }

     

    You can do that for all that you need to remove the sale text from. Try and let me know how it goes.

     

  7. 1 hour ago, curlybirdie21 said:

    Thanks so much for the reply!

    But it doesn't look like it's displaying the header font correctly

    You are welcome!

    Try replacing with the below

    @font-face {
        font-family: 'Raleway';
        src: url('https://static1.squarespace.com/static/65467d7ff3357b713413e9d9/t/654683eeb4aeb55afb815413/1699120111134/Raleway-Regular.ttf');
    } 
     
    @font-face {
        font-family: 'Orbitron-Bold';
        src:       
    url('https://static1.squarespace.com/static/65467d7ff3357b713413e9d9/t/654683bfb95974717c78d3e9/1699120063509/Orbitron-Bold.ttf');}

    In loading the font, I've added single quotes around the font-family name and around the url. Save and refresh page, let me know how it goes.

  8. 20 minutes ago, thereal_ay_ay_ron said:

    Hey, it's not working:

     

    Hi, missing single quote around the url. Try replacing with the below

    @font-face {
      font-family: 'Gilroy-Medium';
      src: url('https://static1.squarespace.com/static/64dd22a529ad6406a072bf80/t/65459ea1136a786901d3a4c0/1699061409261/Gilroy-Medium.ttf') format('truetype');
    }
    
    @font-face {
      font-family: 'TR-909';
      src: url('https://static1.squarespace.com/static/64dd22a529ad6406a072bf80/t/65459ea35a2091267abcc8e4/1699061411786/TR-909.ttf') format('truetype');
    }

     

    Not sure what font you want to use, but need to replace 'font-name' what with you want

    /* Contact Page - Contact Form */
    div.form-block * {
        font-family: 'font-name' !important;
    }

     

    Let me know how it goes

  9. Hi, can't check without a link to your website or more details, but try the below. This will not show the selected element. You will need to replace with your block selector.

    @media only screen and (max-width:640px) {
    	your_line_block_reference {
    		display: none!important;
    	}
    }

     

  10. 5 hours ago, AT76 said:

    Hi! Also looking to make the X darker and slightly larger on all portfolio pages images, please see example:

    https://altatseng.com/play/inside-out-project-portrait-photography

    Hi, try adding the below to Custom CSS?

    // style lightbox close button
    .yui3-lightbox2 .sqs-lightbox-close {
    	color: red !important; // the colour you want
    	scale: 2 !important; // make it bigger
    	translate: 10px 10px !important; // move it away from the edges after scaling
    }

     

    Let me know how it goes.

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