Hiding Title (header) on phone!

Solved

Hiding Title (header) on phone!

SamSukhoonNordl
Explorer
59 1 12

04eeb7dd9ce711224abc57470ce1dd4e.png

Hello as the title says I need help hiding the title on phone. 

Its a title within a image banner. Could someone also explain why the solution below didnt work for me but others?


I have already tried: 

 

@media (max-width:  767px){

header#shopify-section-header2 {

    display: none;

}}

 

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10036 2387 3013

This is an accepted solution.

Hi @SamSukhoonNordl 

The selector is wrong. 

Check this one. 

  1. From you Admin page, go to Online Store > Themes
  1. Select the theme you want to edit
  2. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  3. Then place the code below at the very bottom of the file.

 

 

@media (max-width:  767px){
h2.banner__heading.inline-richtext.h1 {
    display: none;
}
}

 

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1719696291928.png

    This will hide all the heading in your banner section. 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 2 (2)

Made4uo-Ribe
Shopify Partner
10036 2387 3013

This is an accepted solution.

Hi @SamSukhoonNordl 

The selector is wrong. 

Check this one. 

  1. From you Admin page, go to Online Store > Themes
  1. Select the theme you want to edit
  2. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  3. Then place the code below at the very bottom of the file.

 

 

@media (max-width:  767px){
h2.banner__heading.inline-richtext.h1 {
    display: none;
}
}

 

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1719696291928.png

    This will hide all the heading in your banner section. 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
SamSukhoonNordl
Explorer
59 1 12

YOU ARE SOMETHING ELSE. Great work man, appericate it big time.