Hello @Tracy_Francis ,
When using Shopify, you might want to customize the text on your site, including the checkout page. It’s important to note that the language settings in Shopify do not support HTML or styling directly within the text fields. This means that you can’t add HTML tags like
or
directly into these language text boxes.
However, you can still style specific text on the checkout page or any other page using CSS in your theme’s code. Here’s how you can do it:
Identify the Element to Style:
Use your browser’s Developer Tools (right-click on the text and select “Inspect”) to find the class or ID associated with the text you want to style.
Add Custom CSS:
Go to your Shopify admin and navigate to Online Store > Themes.
Click on Actions > Edit code.
Locate your theme’s CSS file (e.g., theme.css, styles.css, etc.) and add your custom CSS.
For example, if you want to style the “Delivery” text, you can use the following CSS:
.checkout__delivery-title {
font-size: 24px;
font-weight: bold;
}
.checkout__delivery-instructions {
font-size: 14px;
color: #555;
}
This CSS will apply the desired styling to the text.
If you provide the URL to your store and any password required to access it, we can assist you in identifying the tags and applying the necessary styling
I hope this helps! If it does, please like it and mark it as a solution!
If you need further assistance, feel free to reach out!
Regards,
Sweans