Verge Collective Posted February 2, 2015 Share Posted February 2, 2015 How can I place the arrows on the summary carousel on the left and right sides of the block, and center the featured text? You can view what I have now under "what our clients are saying" here: https://capro-industries.squarespace.com/why-capro Link to comment
danodizzle Posted August 14, 2015 Share Posted August 14, 2015 I noticed you got this to work on your site. Do you mind sharing? Link to comment
danodizzle Posted August 16, 2015 Share Posted August 16, 2015 Thank you, that worked great! Link to comment
samantha Posted May 2, 2016 Share Posted May 2, 2016 Is there a way to move the arrows closer to the center of the image? I've been playing around with it, but haven't been able to figure it out. Link to comment
paul2009 Posted July 5, 2017 Share Posted July 5, 2017 Sure, this should make it work: .sqs-gallery-design-carousel .sqs-gallery-controls .next, .sqs-gallery-design-carousel .sqs-gallery-controls .previous { display: block; float: right; position: relative; top: auto; left: -15px; right: 15px; bottom: auto; margin: 0 0 15px 0; padding: 0; background-color: transparent; color: inherit !important; font-size: 16px; line-height: 16px; cursor: pointer; } .sqs-gallery-design-carousel .sqs-gallery-controls .next:before { font-family: 'squarespace-ui-font'; font-style: normal; speak: none; font-weight: normal; -webkit-font-smoothing: antialiased; content: "\E003"; text-align: center; display: inline-block; vertical-align: middle; } .sqs-gallery-design-carousel .sqs-gallery-controls .next:before { font-size: 64px; width: 64px; height: 64px; line-height: 64px; } .sqs-gallery-design-carousel .sqs-gallery-controls .next:before { font-size: 32px; width: 16px; height: 32px; line-height: 32px; } .sqs-gallery-design-carousel .sqs-gallery-controls .previous { margin-right: 10px; } .sqs-gallery-design-carousel .sqs-gallery-controls .previous:before { font-family: 'squarespace-ui-font'; font-style: normal; speak: none; font-weight: normal; -webkit-font-smoothing: antialiased; content: "\E000"; text-align: center; display: inline-block; vertical-align: middle; } .sqs-gallery-design-carousel .sqs-gallery-controls .previous:before { font-size: 64px; width: 64px; height: 64px; line-height: 64px; } .sqs-gallery-design-carousel .sqs-gallery-controls .previous:before { font-size: 32px; width: 16px; height: 32px; line-height: 32px; } .sqs-block-summary-v2 .summary-heading { font-size: 24px; } .summary-heading { text-align: center !important; } .summary-carousel-pager .previous { position: absolute !important; left: 18px !important; right: inherit !important; } .summary-header-text{ position: relative !important; padding: 0 !important; left: 25px !important; } About: SQSP User for 17 yrs. Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF Digital, building Squarespace Extensions to supercharge your commerce website. Content: Links in my posts may refer to SF Digital products or may be affiliate links. If my advice helped, you can thank me by clicking one of the feedback emojis below. I love coffee too. Link to comment
Verge Collective Posted July 5, 2017 Author Share Posted July 5, 2017 Sure, this should make it work. Did with the help of several sources: .sqs-gallery-design-carousel .sqs-gallery-controls .next, .sqs-gallery-design-carousel .sqs-gallery-controls .previous { display: block; float: right; position: relative; top: auto; left: -15px; right: 15px; bottom: auto; margin: 0 0 15px 0; padding: 0; background-color: transparent; color: inherit !important; font-size: 16px; line-height: 16px; cursor: pointer; } .sqs-gallery-design-carousel .sqs-gallery-controls .next:before { font-family: 'squarespace-ui-font'; font-style: normal; speak: none; font-weight: normal; -webkit-font-smoothing: antialiased; content: "\E003"; text-align: center; display: inline-block; vertical-align: middle; } .sqs-gallery-design-carousel .sqs-gallery-controls .next:before { font-size: 64px; width: 64px; height: 64px; line-height: 64px; } .sqs-gallery-design-carousel .sqs-gallery-controls .next:before { font-size: 32px; width: 16px; height: 32px; line-height: 32px; } .sqs-gallery-design-carousel .sqs-gallery-controls .previous { margin-right: 10px; } .sqs-gallery-design-carousel .sqs-gallery-controls .previous:before { font-family: 'squarespace-ui-font'; font-style: normal; speak: none; font-weight: normal; -webkit-font-smoothing: antialiased; content: "\E000"; text-align: center; display: inline-block; vertical-align: middle; } .sqs-gallery-design-carousel .sqs-gallery-controls .previous:before { font-size: 64px; width: 64px; height: 64px; line-height: 64px; } .sqs-gallery-design-carousel .sqs-gallery-controls .previous:before { font-size: 32px; width: 16px; height: 32px; line-height: 32px; } .sqs-block-summary-v2 .summary-heading { font-size: 24px; } .summary-heading { text-align: center !important; } .summary-carousel-pager .previous { position: absolute !important; left: 18px !important; right: inherit !important; } .summary-header-text{ position: relative !important; padding: 0 !important; left: 25px !important; } Link to comment
joesardone Posted July 7, 2017 Share Posted July 7, 2017 THANKS - this was useful - one quick addition, can we move them down? Link to comment
joesardone Posted July 7, 2017 Share Posted July 7, 2017 THANKS - this was useful - one quick addition, can we move them down? Link to comment
lisa_zagari Posted February 3, 2018 Share Posted February 3, 2018 I replaced the second to last selector with these two. Hope it helps! .summary-carousel-pager .previous { position: absolute !important; left: 0px !important; right: inherit !important; top: 60px !important; } .summary-carousel-pager .next { position: absolute !important; left: inherit !important; right: 0px !important; top: 60px !important; } Link to comment
maebeerman Posted April 22, 2018 Share Posted April 22, 2018 I tweaked @lisa_zagari's awesome code so that the arrows are in the vertical center of the image, and overlapping the edges by a little bit. See code & example. Hope this is helpful! .summary-carousel-pager .previous { position: absolute !important; left: 5% !important; right: inherit !important; top: 45% !important; } .summary-carousel-pager .next { position: absolute !important; left: inherit !important; right: 5% !important; top: 45% !important; } Link to comment
Wushukiddo Posted February 13, 2019 Share Posted February 13, 2019 Thank you @Paul2009 Worked great! Khari Link to comment
Wushukiddo Posted February 13, 2019 Share Posted February 13, 2019 Thank you @Paul2009 Worked great! Khari Link to comment
Wushukiddo Posted February 13, 2019 Share Posted February 13, 2019 Thank you @Paul2009 Worked great! Khari Link to comment
patricia Posted May 1, 2019 Share Posted May 1, 2019 @lisa_zagari I am wondering if you could show me some adjustments for mobile. My indicators are on top of the text at 480px. Thanks in advance! Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.