I have two sliders in my calculator. I want them next to each other instead of on top of each other.
2 Likes
Happy to see you’ve decided to team up with us! Welcome, @user20321
This code should help:
[class*='widget__Layout-sc'] {
display: block;
}
form {
display: grid;
width: 100%;
grid-template-columns: 1fr 1fr;
column-gap: 50px;
}
Just add it to the Custom CSS field on the Settings tab of your widget’s settings and let me know if it worked
2 Likes