prestige theme: password page newsletter header font size

Solved
stpdilaras
Excursionist
14 0 6

hi everyone!

could you please help me changing the size of the header for "be first to know when we launch"?

I've tried several commands for CSS but couldn't manage it.

 

website:

wwww.sensethepebble.com

 

possible related parts:

 

"type": "newsletter",
"settings": {
"color_scheme": "scheme-2",
"separate_section_with_border": true,
"image_size": "auto",
"subheading": "","title": "BE THE FIRST TO KNOW WHEN WE LAUNCH",
"content": "",
"button_text": "Subscribe",
"overlay_color": "#1c1c1c",
"overlay_opacity": 0

 

OR

 

"sections": {
"main": {
"type": "main-password",
"blocks": {
"content": {
"type": "content",
"disabled": true,
"settings": {
"color_scheme": "scheme-2",
"title": "Be the first to know when we launch",
"show_newsletter_form": true

 

thank you!!!

Accepted Solution (1)
Made4uo-Ribe
Shopify Partner
3990 912 1115

This is an accepted solution.

Hi @stpdilaras 

Try this one. 

  • From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  • Find the theme that you want to edit and click on "Actions" and then "Edit code".
  • In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

#shopify-section-template--16118743367830__48ed0c04-8028-45e8-ac31-ba4d14b75c3b h2.h2 {
  font-size: 26px;
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1698434690835.png
  • None: You can decrease/increase the size. 
Please don't forget to 

Like

 and 

Mark Solution 

to the post that helped you. Thanks!
Sip, savor, and support – your

Coffee Tip

 helps us keep coding magic.❤️❤️❤️
Need a knowledgeable developer? Come and visit us at

Made4uo.com


View solution in original post

Replies 2 (2)
Made4uo-Ribe
Shopify Partner
3990 912 1115

This is an accepted solution.

Hi @stpdilaras 

Try this one. 

  • From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  • Find the theme that you want to edit and click on "Actions" and then "Edit code".
  • In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

#shopify-section-template--16118743367830__48ed0c04-8028-45e8-ac31-ba4d14b75c3b h2.h2 {
  font-size: 26px;
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1698434690835.png
  • None: You can decrease/increase the size. 
Please don't forget to 

Like

 and 

Mark Solution 

to the post that helped you. Thanks!
Sip, savor, and support – your

Coffee Tip

 helps us keep coding magic.❤️❤️❤️
Need a knowledgeable developer? Come and visit us at

Made4uo.com


stpdilaras
Excursionist
14 0 6

thank you!!