Change Text Colour - Shipping Policy Page

Solved

Change Text Colour - Shipping Policy Page

socconnor
Excursionist
36 1 9

Hi there, 

 

Is there a code I can add to CSS section to change the text color to white? It is the only page 'Shipping Policy' where the text color is off. 

socconnor_0-1725696517702.png

socconnor_1-1725696595877.png

 

 

Thanks so much, 

Steve 

Accepted Solution (1)

Tech_Coding
Shopify Partner
287 72 64

This is an accepted solution.

Hello @socconnor 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
  #shopify-section-template--23501616415002__main .rte.scroll-trigger.animate--slide-in p strong span {
      color: #fff !important;
  }
  #shopify-section-template--23501616415002__main .rte.scroll-trigger.animate--slide-in p span {
      color: #fff !important;
  }
</style>

Tech_Coding_0-1725697719271.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.

View solution in original post

Replies 4 (4)

BSSCommerce-HDL
Shopify Partner
2292 842 1057

Hi @socconnor

Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above </head> tag:

{% assign full_url = request.host | append: request.path %}
{% if full_url contains 'shipping-policy' %}
<style>
.page-width.page-width--narrow span {
    color: #ffff !important;
}
</style>
{% endif %}

 Here is result: 

BSSCommerceHDL_0-1725698080564.png

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

BSS-TekLabs
Shopify Partner
2322 688 809

- Here is the solution for you @socconnor 
- Please follow these steps:

z5686811214059_e66de1953f1db631f9134af5cdb796ad.jpg

- Then find the theme.liquid file.
- Then add the following code at the before tag </head> and press 'Save' to save it.

<style>
.main-page-title+.rte.scroll-trigger.animate--slide-in p span {
    color: white !important;
}
</style>

- Here is the result you will achieve:

BSSTekLabs_0-1725697635105.png

 

- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

Tech_Coding
Shopify Partner
287 72 64

This is an accepted solution.

Hello @socconnor 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
  #shopify-section-template--23501616415002__main .rte.scroll-trigger.animate--slide-in p strong span {
      color: #fff !important;
  }
  #shopify-section-template--23501616415002__main .rte.scroll-trigger.animate--slide-in p span {
      color: #fff !important;
  }
</style>

Tech_Coding_0-1725697719271.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.
socconnor
Excursionist
36 1 9

That worked! Thank you so much.