Jump to content

SaranyaDesigns

Circle Member
  • Posts

    149
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by SaranyaDesigns

  1. @sarahgracestudio ok it looks like the gallery controls (the left/right arrows) are interfering with the caption, they are absolutely positioned on top, so they cover the link which is why you can't click it.

    I suggest adjusting the position of the left/right arrows to only come down 50% of the height instead of 100% and then positioning at the bottom of the flexbox. They may not be exactly half the height of the page, but it will be close enough visually and fix your interference. So add this to your custom CSS:

    .gallery-lightbox-controls {
    	height: 50% !important;
    	align-items: flex-end;
    }

    Let me know?

  2. @JenGlenn876 Ah, bummer I was hoping the calendar might included classes indicating the categories on the divs that you could target, but it doesn't look like this template does that... you might be able to write some custom javascript to get the categories to show up as div classes for this, but that's out of my area of expertise, unfortunately... someone else might have a more helpful suggestion, sorry!

  3. @TheLiqueurist am I correct in understanding that you want some whitespace to the left of the product image? Then the image center and the information on the right? As if there were 3 columns but the first column is always empty?

    If so, try adding this to your custom CSS:

    @media screen and (min-width: 768px) {
    	.ProductItem-summary .ProductItem-gallery {
    		width: 30%;
    		margin-left: 30%;
    	}
    }

    You may find that it makes the images too small, so you can play around with the percentages to get the ratio you want, but the total must equal 60%.

  4. @nassim try adding this to your custom CSS: 

    .header-actions .language-picker-desktop .language-picker-content {
    	opacity: 1;
    	background: transparent;
    	display: flex;
    	position: relative;
    }
    .header-actions .language-picker-desktop .language-picker-content .language-item:first-of-type {
    	padding-right: 10px;
    	margin-right: 10px;
    	border-right: 2px solid;
    }
    .header-actions .language-picker-desktop .current-language {
    	display: none;
    }

    If that doesn't work, trying playing around with adding !important to certain properties to override the existing styles, like this:

    .header-actions .language-picker-desktop .language-picker-content {
    	opacity: 1 !important;
    	background: transparent !important;
    	display: flex;
    	position: relative !important;
    }
    .header-actions .language-picker-desktop .language-picker-content .language-item:first-of-type {
    	padding-right: 10px;
    	margin-right: 10px;
    	border-right: 2px solid;
    }
    .header-actions .language-picker-desktop .current-language {
    	display: none;
    }

     

  5. @Darine It looks like the image in this template is set to start at the top of the page behind the navigation in desktop mode regardless of how tall the navigation bar is, which is why that's happening. So the navigation is covering the top of the image. You can add padding or margin to the first block of content on every page in your custom CSS to overcome that like this:

    @media (min-width:800px {
    	.page-section:first-of-type .section-background {
    		top: 100px !important;
    	}
    }
    @media (min-width:641px) and (max-width:799px) {
    	.page-section:first-of-type .section-background {
    		top: 150px !important;
    	}
    }

    Or if you JUST want this to happen on these two specific pages and not all the rest of the site, then you can include the body ID to limit your code just to those specific pages, like this:

    @media (min-width:800px {
    	#collection-651a42029bd6d313af619e60 .page-section:first-of-type .section-background, #collection-651a2e096ce641658310faa8 .page-section:first-of-type .section-background {
    		top: 100px !important;
    	}
    }
    @media (min-width:641px) and (max-width:799px) {
    	#collection-651a42029bd6d313af619e60 .page-section:first-of-type .section-background, #collection-651a2e096ce641658310faa8 .page-section:first-of-type .section-background {
    		top: 150px !important;
    	}
    }

    Let me know if that works?

  6. @LucyBold ah I see, looks like there is a border radius on the div... but it's not showing in any of my browser tools, so probably browser-specific... what kind of phone do you have and what browser are you using?

    You could start by setting the border radius to 0... 

    .sqs-search-ui-button-wrapper.color-dark .search-input {
    	border: 1px solid #000;
    	border-radius: 0 !important;
    }

    If that doesn't work, I would remove the border entirely and put it on a containing div instead, so swap that bit of code for this:

    #yui_3_17_2_1_1700581249574_997 {
    	border-bottom: 1px solid #000;
    }
    .sqs-search-ui-button-wrapper.color-dark .search-input {
    	border: 0 !important;
    }

    let me know?

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