Hide or Delete H1 field

Hi I would like to hide the H1 field on my webpage when im on the landing page.

As you can see in the picture (http://note.io/1pB8TLE) its really messes up the design. I don't want do loose any SEO advantages over this i just want to hide on this page.

Comments

  • Hey,

    please send us url to page where you got this subheader or whatever it is. We need to have a look into code what page it is and how html looks like and only then we`ll be able to give you right css to hide it only on this page.
  • I need to have something there i coulnd´t save my page if i didnt have any text as h1. I did declare the H1 in SEO options but i dont want it to be visible.


  • We are not sure if you know what you want to do but this is called "Cloaking" - different content for users and for google bots but if you do it then probably you don`t take care about it :)

    To hide this section for users, please use below css:
    .page-id-3399 body:not(.template-slider) #Content { padding-top: 0; }
    .page-id-3399 #Subheader { display: none; }
    Like each custom css, this should be pasted in Theme options > Layout > Custom CSS section.
  • This doesnt effect SEO? Well that almost solves it. I just put the code in the Custom CSS but as you can see om the site there is stil white.

    What im want is to make my site always look like this http://www.u0706765.fsdata.se/Easytelefoni3/hem2/#hem0

    This area is to big and i want it to be smaller (http://note.io/TBhVxH) like the link above
  • edited June 2014
    Google bots see this h1 so it does not effect on SEO but this is cloaking as we wrote. If you don`t know what cloaking is then please read about it in wikipedia.

    If above code won`t work fine, then please instead of first line we gave last time, use below:
    .page-id-3399 body:not(.template-slider) #Content { padding-top: 0 !important; }
    or
    .page-id-3399 #Content { padding-top: 0 !important; }

    Hope one of them, will help this time.
  • Thanks for the help!
Sign In or Register to comment.