How To Make Font Size Same for two different paragraph in Description of product backend?

Solved
Pradnya
Tourist
21 0 2

I want same font size for both the paragraphs.

 

This how it is displaying:

https://prnt.sc/SLFPUeAJS76D

Accepted Solution (1)

Accepted Solutions
MandasaTech
Shopify Expert
717 144 136

This is an accepted solution.

@Pradnya 

I would like to give you a solution to support you:
1. Go to Online Store-> Theme-> Edit code
2. Open your theme.liquid theme file
3. Paste the below code before </body> :


<style>
.card__section .rte p span {
font-size: 18px !important;
}
.card__section .rte p {
font-size: 18px !important;
}

@media(min-width:280px) and (max-width: 767px){
.card__section .rte p span {
font-size: 16px !important;
}
.card__section .rte p {
font-size: 16px !important;
}
}
</style>

☞ Helpful or Question answered? Please Click Like & Mark it Accepted Solution
☞ Want to modify or custom changes on store for affordable price? Click on Contact button here
☞ Email at info@mandasa.in
☞ Whatsapp at +918989609120 | Hire us at: Website Support Page

View solution in original post

Replies 8 (8)
oscprofessional
Shopify Partner
14188 2142 2760

@Pradnya 

Share the store URL page. 

If helpful then Please Like and Accept Solution. Chat on WhatsApp | Skype : oscprofessionals-87 |
Email: pallavi@oscprofessionals.com | Custom Pricing Wholesale App : Free | Hire us | Guaranteed Site Speed Optimization | Website Free Audit | Shopify Theme Customization | Build Shopify App | Shopify SEO | Digital Marketing | Shopify Strategies Consultant
MandasaTech
Shopify Expert
717 144 136

Hello @Pradnya 
Please share your page URL.

☞ Helpful or Question answered? Please Click Like & Mark it Accepted Solution
☞ Want to modify or custom changes on store for affordable price? Click on Contact button here
☞ Email at info@mandasa.in
☞ Whatsapp at +918989609120 | Hire us at: Website Support Page
oscprofessional
Shopify Partner
14188 2142 2760

@Pradnya 
Hello,
Check Your Customization paragraph area its available font size select text and apply font size or Open in HTML format.  check paragraph font size and replace as per requirement

If helpful then Please Like and Accept Solution. Chat on WhatsApp | Skype : oscprofessionals-87 |
Email: pallavi@oscprofessionals.com | Custom Pricing Wholesale App : Free | Hire us | Guaranteed Site Speed Optimization | Website Free Audit | Shopify Theme Customization | Build Shopify App | Shopify SEO | Digital Marketing | Shopify Strategies Consultant
oscprofessional
Shopify Partner
14188 2142 2760

@Pradnya 
Hello,
Please Check Your HTML and delete this  HTML or CSS
Check Screenshot

oscprofessional_0-1670493974846.png


Or

Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid

 

.card__section p span {
	font-size: 18px !important;
}

 

If helpful then Please Like and Accept Solution. Chat on WhatsApp | Skype : oscprofessionals-87 |
Email: pallavi@oscprofessionals.com | Custom Pricing Wholesale App : Free | Hire us | Guaranteed Site Speed Optimization | Website Free Audit | Shopify Theme Customization | Build Shopify App | Shopify SEO | Digital Marketing | Shopify Strategies Consultant
MandasaTech
Shopify Expert
717 144 136

This is an accepted solution.

@Pradnya 

I would like to give you a solution to support you:
1. Go to Online Store-> Theme-> Edit code
2. Open your theme.liquid theme file
3. Paste the below code before </body> :


<style>
.card__section .rte p span {
font-size: 18px !important;
}
.card__section .rte p {
font-size: 18px !important;
}

@media(min-width:280px) and (max-width: 767px){
.card__section .rte p span {
font-size: 16px !important;
}
.card__section .rte p {
font-size: 16px !important;
}
}
</style>

☞ Helpful or Question answered? Please Click Like & Mark it Accepted Solution
☞ Want to modify or custom changes on store for affordable price? Click on Contact button here
☞ Email at info@mandasa.in
☞ Whatsapp at +918989609120 | Hire us at: Website Support Page