raego Posted September 21, 2023 Share Posted September 21, 2023 I'm hoping to style the gallery block arrows on this page - https://www.brontegroup.com.au/elia-taylor Is it possible to remove the background to the arrow and make them larger and black? Is it also possible to move their positioning on mobile so they don't sit on top of the images? Link to comment
tuanphan Posted September 23, 2023 Share Posted September 23, 2023 #1. Add to Website > Website Tools (under Not Linked) > Custom CSS /* Gallery block arrows */ .sqs-gallery-controls .previous, .sqs-gallery-controls .next { background-color: transparent !important; color: black !important; } .sqs-gallery-controls .next:before, .sqs-gallery-controls .previous:before { font-size: 30px !important; } #2. Which position you want? Begona and Lesum 2 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
raego Posted September 24, 2023 Author Share Posted September 24, 2023 Thank you! That's perfect for the style. For #2 on mobile, is it possible to move the arrows outwards (or make the images slightly smaller) so they don't sit on top of the image? Link to comment
Solution tuanphan Posted September 27, 2023 Solution Share Posted September 27, 2023 On 9/25/2023 at 6:11 AM, raego said: Thank you! That's perfect for the style. For #2 on mobile, is it possible to move the arrows outwards (or make the images slightly smaller) so they don't sit on top of the image? Use this CSS code @media screen and (max-width: 992px) { .sqs-gallery-controls .previous { left: -30px; } .sqs-gallery-controls .next { right: -14px; }} Begona 1 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