cladzine-star
-
Posts
5 -
Joined
-
Last visited
Content Type
Forums
Gallery
Blogs
Events
Store
Downloads
Profiles
Posts posted by cladzine-star
-
-
Thanks Ziggy. Unfortunately it's still not working. 😞
-
Hi. It's https://www.brifiworks.com/
And here's the code:
/* List Section - UI Custom Arrows */
button.user-items-list-banner-slideshow__arrow-button svg {
display: none !important;
}
button.user-items-list-banner-slideshow__arrow-button--left div:before {
content: "\e006";
font-family: 'squarespace-ui-font';
transform: rotate(270deg);
display: block;
color: white;
font-size: 30px;
line-height: 60px;
}
button.user-items-list-banner-slideshow__arrow-button--right div:before {
content: "\e006";
font-family: 'squarespace-ui-font';
transform: rotate(-270deg);
display: block;
color: white;
font-size: 30px;
line-height: 60px;
} -
The layout is fine in the mobile view but the client wants the white < > on the green circle like it is on desktop.
-
Custom carousel button styling on mobile doesn't match desktop
in Customize with code
Posted
I found the answer from an old discussion:
/* List Section - UI Custom Arrows */
button[class*="arrow-button"] svg {
display: none !important;
}
button[class*="arrow-button--left"] div:before {
content: "\e006";
font-family: 'squarespace-ui-font';
transform: rotate(270deg);
display: block;
color: white;
font-size: 24px;
line-height: 60px;
top: -10px;
position: relative;
}
button[class*="arrow-button--right"] div:before {
content: "\e006";
font-family: 'squarespace-ui-font';
transform: rotate(-270deg);
display: block;
color: white;
font-size: 24px;
line-height: 60px;
top: -10px;
position: relative;
}