Hello,
I’m trying to change the text alignment of the price to the right. (Price only. Option names should stay to left).
pw: wild
Hello,
I’m trying to change the text alignment of the price to the right. (Price only. Option names should stay to left).
pw: wild
Hi @swalter85
You can check this choices. Same instruction.
.smartrr-radio-group-container {
max-width: 100%;
width: 100%;
}
.smartrr-selling-plan-group-name {
width: 100%;
justify-content: space-between;
}
And Save.
Result:
Or
.smartrr-radio-group-container {
max-width: 100%;
width: 100%;
}
.smartrr-selling-plan-group-name {
width: 100%;
}
.smartrr-selling-plan-group-name {
display: grid;
grid-template-columns: 1fr auto 1fr;
}
[data-smartrr-price-style] {
text-align: right;
}
And Save.
Result:
Or.
.smartrr-radio-group-container {
max-width: 100%;
width: 100%;
}
.smartrr-selling-plan-group-name {
width: 100%;
}
.smartrr-selling-plan-group-name {
display: grid;
grid-template-columns: auto auto 1fr;
}
[data-smartrr-price-style] {
text-align: right;
}
And Save.
Result:
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
Thank you for your help!
3rd option is close to how I want it. Is there a way to hide the dash?
Hi @swalter85
I hope you are well. You can follow our instructions below:
1/ Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
2/ From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/iDxwa8zBQ4Z-
3/ Copy the code below and paste it there
Here is the code for Step 3:
.smartrr-selling-plan-group-name span.smartrr-pricing-dash {
opacity: 0 !important;
}
Please let me know if it works. Thank you!
Best,
Daisy - Avada Support Team.
Worked! Thanks a lot!
Welcome! Would you mind hitting ‘like’ as well? Thanks!