Removing Title From Top of Page

8 replies
  • WEB DESIGN
  • |
Here is my site for reference: About - JamesCanzanella.com

I am having some difficulty with removing the About right above 'Why James Canzanella Will Help You Build Muscle and Lose Body Fat'.

Can this only be done through Appearance / Editor?
#page #removing #title #top
  • Profile picture of the author BillyW
    You can "hide" it so it won't show up, but you would have to give that particular <h1> an id in order to do so, otherwise it will hide all <h1>'s in that position.
    Signature
    Qosso.com - Exceptional Branding At Affordable Prices
    {{ DiscussionBoard.errors[6935292].message }}
  • Profile picture of the author imdesigner
    Go to Pages --> Edit (About Page) ---> remove line

    correction for last poster, this is not a header tag not <h1>
    it is just bold, <strong>or you might see <b>

    let me know if that worked
    {{ DiscussionBoard.errors[6935400].message }}
    • Profile picture of the author BillyW
      No, it's a <h1> tag.

      <h1 class="entry-title">About</h1>

      Got that line of code straight from the website.

      Originally Posted by imdesigner View Post

      Go to Pages --> Edit (About Page) ---> remove line

      correction for last poster, this is not a header tag not <h1>
      it is just bold, <strong>or you might see <b>

      let me know if that worked
      Signature
      Qosso.com - Exceptional Branding At Affordable Prices
      {{ DiscussionBoard.errors[6935476].message }}
  • Profile picture of the author imdesigner
    my mistake.. thought he wanted "Why James Canzanella Will Help You Build Muscle and Lose Body Fat" removed
    {{ DiscussionBoard.errors[6935494].message }}
    • Profile picture of the author nstephan
      Try adding a display none to your classname of the h1 tag
      {{ DiscussionBoard.errors[6936015].message }}
      • Profile picture of the author BillyW
        Only thing is if you do that, ALL of the <h1>'s will be hidden. Not just that one specific <h1>.

        Originally Posted by nstephan View Post

        Try adding a display none to your classname of the h1 tag
        Signature
        Qosso.com - Exceptional Branding At Affordable Prices
        {{ DiscussionBoard.errors[6936379].message }}
  • Profile picture of the author rajeevrla
    "About" is the Title of the page which is being displayed. If you want to hide this Title from this page only, use the following code:
    Code:
    .page-id-456 #content .entry-title {
        display: none;
    }
    Note: .page-id-456 is the class name for the "About" Page.


    If you want to hide all the titles of the page throughout the website, use this code:
    Code:
    #content .entry-title {
        display: none;
    }
    Signature

    Have a great day!

    {{ DiscussionBoard.errors[6942848].message }}
  • Profile picture of the author RK Corbes
    If what you are trying to say is you want to remove the "About". Go to theme editor under Appearances in your administration dashboard.

    On the far right, edit the file with the name page.php (Page template) and look for this code.
    <h1 class="big-title"><?php the_title(); ?></h1> Delete it totally then update your website, the problem you've been dealing with will disappear.

    Here's the recap:
    Administration Dashboard > Appearance > Editor > Page.php (Page Template right side)
    Look for this code <h1 class="big-title"><?php the_title(); ?></h1> , it's 3rd line from the top and remove the whole code. Save to update your file and you're good. Let me know if you have still problem.
    {{ DiscussionBoard.errors[6985276].message }}

Trending Topics