Text alignment

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

1 Like

Hi @swalter85

You can check this choices. Same instruction.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.smartrr-radio-group-container {
    max-width: 100%;
    width: 100%;
}

.smartrr-selling-plan-group-name {
    width: 100%;
    justify-content: space-between;
}
.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;
}
.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;
}

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!