How can I change text color for "About Us" page?

Solved

How can I change text color for "About Us" page?

VictoriaNguyen
Excursionist
18 2 4

How can I change the test color for ONLY where it says the text, "About Us"? I already have the color of text that I want in the body, white, but the CSS code I pasted didn't include the words, "About Us". Any solutions would be greatly appreciated. 

Accepted Solution (1)
Guleria
Shopify Partner
3951 791 1123

This is an accepted solution.

Hello @VictoriaNguyen ,

 

Follow these steps:

1. Go to Online Store -> Theme -> Edit code

2. Open your base.css file and paste the following code at the bottom:

#shopify-section-template--15300641652869__main .main-page-title {
    color: #fff;
}

 

Regards
Guleria

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder

View solution in original post

Replies 6 (6)

Guleria
Shopify Partner
3951 791 1123

Hello @VictoriaNguyen ,

 

Please share the store URL.

 

Regards
Guleria

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
VictoriaNguyen
Excursionist
18 2 4

https://0edra6-mk.myshopify.com/pages/about-us

 

Password: Welcome1 

 

About Us page is located on the bottom of the page. Below the testimonials, above the email sign up.

Guleria
Shopify Partner
3951 791 1123

This is an accepted solution.

Hello @VictoriaNguyen ,

 

Follow these steps:

1. Go to Online Store -> Theme -> Edit code

2. Open your base.css file and paste the following code at the bottom:

#shopify-section-template--15300641652869__main .main-page-title {
    color: #fff;
}

 

Regards
Guleria

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
VictoriaNguyen
Excursionist
18 2 4

Thank you SO much, it worked!

VictoriaNguyen
Excursionist
18 2 4

Few more questions:

1. How can I change the color background to black AND all of the text to white for every page listed at the bottom of the site? "Privacy Policy, Contact Information, Terms of Service, Shipping Policy, and Refund Policy"

 

2. How can I change to white text color in "Contact" section located in the menu draw bar?

 

Thank you so much!

 

 

Guleria
Shopify Partner
3951 791 1123

1. Use this css in same file base.css

main#MainContent {
    background-color: #000;
    color: #fff;
}
.shopify-policy__title h1 {
    color: #fff !important;
}

 

2. Use this css in same file base.css

.page-width h1.main-page-title {
    color: #fff !important;
}

 

Problem solved don't forget to Like it and Mark it as Solution!

 

Regards
Guleria

 

 

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder