Change the colors/styles of the Supertime text
Are you looking to customize the colors/styles of the Supertime text on your cart page? Supertime supports that!
You can control the colors and styles of your Supertime text by adding the following CSS classes to your theme.css.liquid file.
.supertime-delivery-method-text { <insert CSS here> } .supertime-date-text { <insert CSS here> } .supertime-timeslot-text { <insert CSS here> } .supertime-required-text { <insert CSS here> } .supertime-description-text { <insert CSS here> }
Steps:
- Visit your store's Theme settings.
- Click the Actions button and select Edit Code.
- Open your theme.scss.liquid file and scroll to the bottom of the file.
- Add the CSS modifiers you'd like to use (e.g. font-weight:, or color:)
- Add !important to those modifiers. For example, if making the colour pink, you would put:
.supertime-delivery-method-text { color: #FF00FF !important; }
- Click the Save button.