Solved

How to change h2 to h1 on theme Impulse?

PWMfoto
Visitor
3 0 0

I really need a h1 on the start page and the theme Impulse does not seems to have one. But there is a h2.

Would be perfect to change that one to a h1. Where to fix this?

 

PLEASE someone :0)

Accepted Solution (1)
kazi
Shopify Partner
551 86 107

This is an accepted solution.

You can add plain html block if available or use  javascript If you want to change h2 of "Photo art gives your rooms a new look" 

 

<script>
var repel = document.querySelector('.template-index #shopify-section-1588626476600 .section-header__title');
        repel.outerHTML = '<h1>' + repel.innerHTML + '</h1>';

</script>

 

 

☑️ If the answer solve your issue please ✔ Accept it and hit like ✌️

► Need help with THEME CUSTOMIZATION, SPEED OPTIMIZATION ?


WhatsApp Email: Click here Skype: kof.bd

View solution in original post

Replies 4 (4)

kazi
Shopify Partner
551 86 107

@PWMfoto  Hello can you share the store URL?

☑️ If the answer solve your issue please ✔ Accept it and hit like ✌️

► Need help with THEME CUSTOMIZATION, SPEED OPTIMIZATION ?


WhatsApp Email: Click here Skype: kof.bd
PWMfoto
Visitor
3 0 0
kazi
Shopify Partner
551 86 107

This is an accepted solution.

You can add plain html block if available or use  javascript If you want to change h2 of "Photo art gives your rooms a new look" 

 

<script>
var repel = document.querySelector('.template-index #shopify-section-1588626476600 .section-header__title');
        repel.outerHTML = '<h1>' + repel.innerHTML + '</h1>';

</script>

 

 

☑️ If the answer solve your issue please ✔ Accept it and hit like ✌️

► Need help with THEME CUSTOMIZATION, SPEED OPTIMIZATION ?


WhatsApp Email: Click here Skype: kof.bd
PWMfoto
Visitor
3 0 0

Tex, I will try this! Sadly block is not an option, so I will try the script! Thank's!