Anniiey1 Posted January 27, 2023 Share Posted January 27, 2023 (edited) How can I move the Carousel Section Arrows on mobile to the center similar to how it is on desktop? Right now on mobile, the arrows sit under the images. Edited January 27, 2023 by Anniiey1 Link to comment
tuanphan Posted January 28, 2023 Share Posted January 28, 2023 Hi, Can you share link to page where you use Carousel? We can check easier Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Anniiey1 Posted January 30, 2023 Author Share Posted January 30, 2023 On 1/28/2023 at 3:42 AM, tuanphan said: Hi, Can you share link to page where you use Carousel? We can check easier https://www.annie-yang.com/misc-projects This is the link to the page! Link to comment
tuanphan Posted February 2, 2023 Share Posted February 2, 2023 On 1/31/2023 at 12:43 AM, Anniiey1 said: https://www.annie-yang.com/misc-projects This is the link to the page! Add to Design > Custom CSS @media screen and (max-width:767px) { body#collection-63d2ae161cc44a2aa6881b2c { .desktop-arrows.user-items-list-carousel__arrow-wrapper { display: flex !important; } .mobile-arrows { display: none !important; } }} Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Anniiey1 Posted February 2, 2023 Author Share Posted February 2, 2023 10 hours ago, tuanphan said: Add to Design > Custom CSS @media screen and (max-width:767px) { body#collection-63d2ae161cc44a2aa6881b2c { .desktop-arrows.user-items-list-carousel__arrow-wrapper { display: flex !important; } .mobile-arrows { display: none !important; } }} I added this, but now the arrows are overlapping either side of the images instead of being on the border. Can we fix this somehow? Thank you! Link to comment
tuanphan Posted February 8, 2023 Share Posted February 8, 2023 On 2/3/2023 at 6:02 AM, Anniiey1 said: I added this, but now the arrows are overlapping either side of the images instead of being on the border. Can we fix this somehow? Thank you! Use this new code @media screen and (max-width:767px) { body#collection-63d2ae161cc44a2aa6881b2c { .desktop-arrows.user-items-list-carousel__arrow-wrapper { display: flex !important; } .mobile-arrows { display: none !important; } button.user-items-list-carousel__arrow-button.user-items-list-carousel__arrow-button--left { position: relative; left: -15px; } button.user-items-list-carousel__arrow-button.user-items-list-carousel__arrow-button--right { position: relative; right: -15px; } }} Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Anniiey1 Posted February 12, 2023 Author Share Posted February 12, 2023 Thank you, it still didn't solve the problem. I just removed them instead. Wish there were alternate arrows that didn't take up so much space. Link to comment
tuanphan Posted February 15, 2023 Share Posted February 15, 2023 On 2/13/2023 at 2:46 AM, Anniiey1 said: Thank you, it still didn't solve the problem. I just removed them instead. Wish there were alternate arrows that didn't take up so much space. The code is fine to me. Can you add & keep the code? We can check easier Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
afs242 Posted April 27 Share Posted April 27 (edited) This code worked great for me, but for some reason the arrow color has turned blue. It looks black (which is what I prefer) in the squarespace editor but blue when viewing on mobile (see image attached). Link: www.raehcollection.com Any thoughts? I tried this code to change the color but it doesn't seem to work: @media screen and (max-width:767px) { svg.user-items-list-carousel__arrow-icon-path{ stroke: black !important; }} Edited April 27 by afs242 Link to comment
tuanphan Posted April 29 Share Posted April 29 On 4/28/2024 at 6:42 AM, afs242 said: This code worked great for me, but for some reason the arrow color has turned blue. It looks black (which is what I prefer) in the squarespace editor but blue when viewing on mobile (see image attached). Link: www.raehcollection.com Any thoughts? I tried this code to change the color but it doesn't seem to work: @media screen and (max-width:767px) { svg.user-items-list-carousel__arrow-icon-path{ stroke: black !important; }} Try this code to Custom CSS box button[class*="_arrow-button--right"] div:before, .mobile-arrow-button--right:before, button[class*="_arrow-button--left"] div:before, .mobile-arrow-button--left:before { color: #000 !important; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
afs242 Posted April 29 Share Posted April 29 Thank you for responding tuan. That worked! You're always so amazing with your knowledge. Funny enough, I just sat down before you responded to fiddle with it some more and got it to work with this code as well: .user-items-list-carousel__arrow-button{ color: #000000 !important; } tuanphan 1 Link to comment
bridoo Posted May 5 Share Posted May 5 Hello I've got the same problem. The carousel works really well in the desktop version but on mobile the arrows are below the content and not visible. I'd like to move the arrows to be in between the photos and the copy. Ideally overlapping the photos. How can I move the Carousel Section Arrows on mobile to the center similar to how it is on desktop? Right now on mobile, the arrows sit under the images. Link to comment
tuanphan Posted May 6 Share Posted May 6 On 5/5/2024 at 10:14 AM, bridoo said: Hello I've got the same problem. The carousel works really well in the desktop version but on mobile the arrows are below the content and not visible. I'd like to move the arrows to be in between the photos and the copy. Ideally overlapping the photos. How can I move the Carousel Section Arrows on mobile to the center similar to how it is on desktop? Right now on mobile, the arrows sit under the images. Add to Custom CSS code @media screen and (max-width:767px) { [class*="desktop-arrow"] { display: flex !important; } [class*="mobile-arrow"] { display: none !important; } } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment