Support » Themes and Templates » Remove title on page for the Capture theme

  • Resolved OBay11

    (@obay11)


    I am trying to remove the title that appears at the top of a page (right above my content.) I am not talking about the actual name of the page, but the title of the page that appears right above my content. I am using the “Capture” theme. Any ideas?

    passion8labs.com

Viewing 10 replies - 1 through 10 (of 10 total)
  • .

    (@techievous)

    You mean the post title? That huge “Home” text?

    If you want the post title to not appear only on the home page, use this:

    .home .post-title {
       display:none;
    }

    If you want the post title to not appear anywhere, use this:

    .post-title {
       display:none;
    }

    Hi,

    In your child theme CSS file try

    .post-title{display: none}

    Thread Starter OBay11

    (@obay11)

    Where do I paste that if I am not using a child theme? I have a lot of customization that I don’t want to re-apply

    Thanks

    Hello,

    If you are not using a child theme (very bad idea) you make the changes on the main CSS file http://passion8labs.com/wp-content/themes/capture/style.css

    When you theme author updates the theme, all customisations you make will be lost, trust me, create a child theme before you go any further.

    .

    (@techievous)

    Jetpack is an official plugin from WordPress. It has many features, one of which is a Custom CSS. After installing, configuring, and activating the module, you can go to Appearance –> Edit CSS –> copy-paste my code there.

    Simple Custom CSS is another plugin that does only Custom CSS. After installed, you can go to Appearance –> Custom CSS –> copy-paste my code there.

    Thread Starter OBay11

    (@obay11)

    Okay i have made a child theme. Is there anywhere specific i should paste it? It does not seem to be working

    .

    (@techievous)

    Did you setup your child theme properly? Both Design Locker and I provided pretty much identical code; either of ours will work.

    Please check your child theme for error. We can’t check because we can’t see your site.

    I’ll go ahead and leave this to Design Locker because it’s really confusing to have 2 helper posting, haha. This will be the last post that I make in this thread.

    Thread Starter OBay11

    (@obay11)

    Yes, it is set up properly. It is still showing. Pasting the code anywhere within “stylesheet” will work?

    Thread Starter OBay11

    (@obay11)

    I installed the Simple Custom CSS. All is working now. Thank you all for your help!!!

    HaHa, thanks for the workload Techievous.

    Create a new folder in wp-content/themes and call it something like “passion8”.

    Within that folder upload your new CSS fille called style.css that should start something like

    /*
    Theme Name: Passion8
    Author: Your Name
    Template: capture
    */
    
    @import url(../capture/style.css);
    
    /* All Theme customization starts here
    -------------------------------------------------------------- */
    
    .post-title {
       display:none;
    }

    Activate your child theme at Appearance >> Themes in the admin area.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Remove title on page for the Capture theme’ is closed to new replies.