Remove page Title

Discussion in 'Figero WordPress Theme' started by rjmprofessional, Dec 12, 2012.

  1. rjmprofessional

    rjmprofessional New Member

    Joined:
    Jul 26, 2012
    Messages:
    25
    Likes Received:
    1
    I would like to remove the page title and the custom css I have seen on the web isn't working for me. Is there something specific for Figero?
     
  2. Harmeet

    Harmeet Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    360
    Likes Received:
    15
    Put the following code in your custom css

    Appearance -> theme options -> styling options -> custom css

    Code:
    .content-info h1 {
    display:none;
    }
    This will solve your problem.

    Thanks.
     
  3. rjmprofessional

    rjmprofessional New Member

    Joined:
    Jul 26, 2012
    Messages:
    25
    Likes Received:
    1
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .page-heading {
    display:none;
    }
    This will solve your issue.
     
  5. jweishaar

    jweishaar New Member

    Joined:
    Dec 12, 2012
    Messages:
    7
    Likes Received:
    0
    Location:
    New York
    Hi, I am using Gommero Pro and would like to remove my page titles too. I tried putting the code below in custom CSS and it didn't work. Can you please take a look at my page here: http://newhorizons123.com/marketing-systems/ and let me know if you know why this fix doesn't work? Thanks in advance! :)
    .page-heading {
    display:none;
    }
     
  6. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    @jweishaar,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS



    Code:
    .fullwidth h1 {
    display: none;
    }
    .content_wrap .content h1{
    display:none;
    }
     
  7. jweishaar

    jweishaar New Member

    Joined:
    Dec 12, 2012
    Messages:
    7
    Likes Received:
    0
    Location:
    New York
    Hi again, sorry but that code also removed the h2 header tag. Is there a code to just remove the page title? Thanks!
     
  8. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Please specify about which h2 tag you are talking or send screenshot of that area.
     
  9. jweishaar

    jweishaar New Member

    Joined:
    Dec 12, 2012
    Messages:
    7
    Likes Received:
    0
    Location:
    New York
    Sure - I am referring to the actual TITLE of the page. The arrow in the attached image is pointing to the page title. Thanks!
     

    Attached Files:

  10. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    The code given is 100% working code. Please add it and check again.
    It will work.

    Code:
    .fullwidth h1 {
    display: none;
    }
    .content_wrap .content h1{
    display:none;
    }
     
  11. jweishaar

    jweishaar New Member

    Joined:
    Dec 12, 2012
    Messages:
    7
    Likes Received:
    0
    Location:
    New York
    Thanks. That does remove the title but it also removes the h1 header tag on the page. I will try a plugin to remove page titles only. Thanks!
     
  12. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    We have checked your website, You have done some editing in content area, We only use h1 tag in one place, Therefore the given code above is working fine but in your case you are using h1 tag for some more heading also in content area, Please use h2 tag for extra headings in content area, This will solve your issue.
     

Share This Page