• Hi,
    I used the Add new Project to create a Portfolio on my site. I titled the Page “Portfolio”, but that is not what displays in the middle of the Header Image. “Archives” displays in the middle of the Header image. Is there a way to force this page to display the title “Portfolio”?

    Or, would it be possible to remove the title from the Header image all together?

    If you could tell me how to do either option, so that I could experiment with that, it would be very helpful.

    I’m not a WordPress expert, and I have never studied CSS or HTML, so I’d be grateful if you would tell me exactly where to go to insert any code snippets that you might provide.

    Gratefully Yours, Nancy

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Hi there, this CSS solution changes the title to Portfolio.

    body.post-type-archive-jetpack-portfolio .page-title {
    	visibility: hidden;
    }
    body.post-type-archive-jetpack-portfolio .page-title:before {
    	visibility: visible;
    	content: "Portfolio";
    	position: relative;
    	left: 40px
    }

    Normally this can also be done using a Child Theme, but since Goran is already a Child Theme of Edin, we cannot do that (a child of a child), and it is not advisable to edit the theme files directly since the change would be overwritten in theme updates.

    Thread Starter churchillnancy

    (@churchillnancy)

    Thank you @sacredpath, that worked.
    Is there any way to hide the page title on other pages? I’d really like to hide it on my Home page.

    https://www.churchillcopywriting.com
    I currently have the page title set to “inspiring copy” because “home” looked so boring in the middle of the image. However it would be nice to use “Home” so that the menu would make more sense.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to Change Title of Portfolio from “Archive” to “Portfolio”?’ is closed to new replies.