How to increase size of a Title

Solved

How to increase size of a Title

NikosBat
Trailblazer
386 1 67

Hello guys, how can I increase the size of this Title?

 

NikosBat_0-1740043216123.png

 

Accepted Solution (1)
NikosBat
Trailblazer
386 1 67

This is an accepted solution.

Thanks LizHoang, that has solved my problem.

View solution in original post

Replies 4 (4)

LizHoang
Shopify Partner
1251 159 193

Hi @NikosBat 

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

 

.product__title h1 {
    font-size: 5rem !important;
}

 

Result

 

LizHoang_0-1740043495575.png

 

Best,

Liz

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Check our Joy Rewards & Loyalty Program
NikosBat
Trailblazer
386 1 67

This is an accepted solution.

Thanks LizHoang, that has solved my problem.

Bundler-Manuel
Astronaut
850 44 99

Hi there @NikosBat  you can try these following steps

 

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

Step 2: Search file base.css.

Step 3: Paste the below code at bottom of the file -> Save

 

h1.main-page-title.page-title.h0 {

    font-size: 30px;

}

Let me know if this works for you.

Emmanuel
Please let me know if it works by marking it as a solution!
Bundler - Product Bundles app, a great bundle app for Shopify, with glowing user testimonials and a free plan.
NikosBat
Trailblazer
386 1 67

Thanks Bundler-Manuel I appreciate it.