Re: 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
Explorer
60 2 15

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
4181 812 1168

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
4181 812 1168

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
Explorer
60 2 15

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
4181 812 1168

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
Explorer
60 2 15

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

Guleria
Shopify Partner
4181 812 1168

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
Explorer
60 2 15

Silly mistake by me, thanks!

BiDeal-Discount
Shopify Partner
782 101 174

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! Coffee tips fuel my dedication.
- BiDeal Bundle Volume Discounts: Upsell with discount bundles, quantity breaks, volume discounts & mix-and-match bundles. AOV+ with free gifts, free shipping & progressive cart
- Contact me via WhatsApp
Jarch2
Explorer
60 2 15
BiDeal-Discount
Shopify Partner
782 101 174

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! Coffee tips fuel my dedication.
- BiDeal Bundle Volume Discounts: Upsell with discount bundles, quantity breaks, volume discounts & mix-and-match bundles. AOV+ with free gifts, free shipping & progressive cart
- Contact me via WhatsApp
Jarch2
Explorer
60 2 15

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
782 101 174

can you try this one in theme.css

.features--heading-uppercase .shopify-section--bordered .Heading {
  text-transform: lowercase;
}
- Helpful? Like & Accept solution! Coffee tips fuel my dedication.
- BiDeal Bundle Volume Discounts: Upsell with discount bundles, quantity breaks, volume discounts & mix-and-match bundles. AOV+ with free gifts, free shipping & progressive cart
- Contact me via WhatsApp
Jarch2
Explorer
60 2 15

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