Custom CSS to make capital font lowercase in certain sections in the Prestige theme

Solved

Custom CSS to make capital font lowercase in certain sections in the Prestige theme

Jarch2
Excursionist
29 1 6

I'm using the Prestige theme which has an option to make all headings uppercase. This overall looks good in my store apart from a few sections where I would like to change the heading font to lowercase.

Accepted Solution (1)

Guleria
Shopify Partner
4146 809 1164

This is an accepted solution.

Hello @Jarch2 ,

 

You can assign css to section ID 

e.g.

#section-id {

text-transform: lowercase;

}

 

or you can develop an option in sections to control it dynamically without editing the code.

 

Regards
Guleria

- Custom themes, UI/UX design, ongoing maintenance & support.
- 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 12 (12)

Guleria
Shopify Partner
4146 809 1164

This is an accepted solution.

Hello @Jarch2 ,

 

You can assign css to section ID 

e.g.

#section-id {

text-transform: lowercase;

}

 

or you can develop an option in sections to control it dynamically without editing the code.

 

Regards
Guleria

- Custom themes, UI/UX design, ongoing maintenance & support.
- 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
Jarch2
Excursionist
29 1 6

How do I locate the section id? I know how to inspect but I don't know what the id looks like.

 

Guleria
Shopify Partner
4146 809 1164

With inspect tool get the parent element ID

e.g. 

#shopify-section-template--19377887183064__text_with_image_kHBzWF .SectionHeader__Heading.Heading {
    text-transform: lowercase;
}
- Custom themes, UI/UX design, ongoing maintenance & support.
- 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
Jarch2
Excursionist
29 1 6

It comes up with an error saying the section ID selector is not supported

Guleria
Shopify Partner
4146 809 1164

Use it in theme.css or any css related file. 

- Custom themes, UI/UX design, ongoing maintenance & support.
- 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
Jarch2
Excursionist
29 1 6

Silly mistake by me, thanks!

BiDeal-Discount
Shopify Partner
395 45 89

Hi @Jarch2 

Yes we can use custom css to change it. can you share me the link to let me give you the solution

- Helpful? Like & Accept solution!
- BiDeal Bundle Volume Discounts: Upsell with bundles, quantity breaks, volume discounts. AOV+ with gifts, shipping & progressive cart
- Bify app: Shopify automatic discount solutions
- Contact me? support@bify.app or WhatsApp: +84974709330
Jarch2
Excursionist
29 1 6
BiDeal-Discount
Shopify Partner
395 45 89

let try to add custom css below for example home heading

 

.features--heading-uppercase .Heading {
  text-transform: lowercase;
}

 

the result:

 

BiDealDiscount_0-1746498411155.png

 

- Helpful? Like & Accept solution!
- BiDeal Bundle Volume Discounts: Upsell with bundles, quantity breaks, volume discounts. AOV+ with gifts, shipping & progressive cart
- Bify app: Shopify automatic discount solutions
- Contact me? support@bify.app or WhatsApp: +84974709330
Jarch2
Excursionist
29 1 6

After applying the code to the CSS section, it doesn't work. It does work when applied to the theme CSS but it works everywhere which isn't what I want. 

BiDeal-Discount
Shopify Partner
395 45 89

can you try this one in theme.css

.features--heading-uppercase .shopify-section--bordered .Heading {
  text-transform: lowercase;
}
- Helpful? Like & Accept solution!
- BiDeal Bundle Volume Discounts: Upsell with bundles, quantity breaks, volume discounts. AOV+ with gifts, shipping & progressive cart
- Bify app: Shopify automatic discount solutions
- Contact me? support@bify.app or WhatsApp: +84974709330
Jarch2
Excursionist
29 1 6

It worked, but it affected the font of every section.