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

I want same font size for both the paragraphs.

This how it is displaying:

https://prnt.sc/SLFPUeAJS76D

@Pradnya

Share the store URL page.

Hello @Pradnya
Please share your page URL.

@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

Website: https://fishermanshub.com/

Example of the product: https://fishermanshub.com/products/lures-factory-combait-spinner-rakkoon-series

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

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;
}

@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 :
.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; } }

Thank you For helping.

Thank you for helping.