How to Change Portfolio Page Title
-
Hi,
I have added a portfolio page on my website: https://rewomen.wordpress.com/project-type/events/
But I would like the title to be just ‘Events’ and not ‘Project Type: Events’.
Is it possible to do that?
Many thanks,
MariaThe blog I need help with is: (visible only to logged in users)
-
Hi Maria, give the following a try. The first rule hides the existing title and the second adds “Events” and then positions it in the same place as the original. On narrower screens, the alignment was off (at 680px and narrower) so I included a Media Query that adjusts the position on those narrower screens.
.tax-jetpack-portfolio-type.term-events .page-header h1 { visibility: hidden; } .tax-jetpack-portfolio-type.term-events .page-header h1:after { content: "Events"; visibility: visible !important; display: block; margin-top: -70px; } @media screen and (max-width: 680px) { .tax-jetpack-portfolio-type.term-events .page-header h1:after { margin-top: -40px; } } -
Thank you, thesacredpath!
I also replicated the CSS to the other portfolio page and it worked super well!
Happy :-)!!!
Thanks a million.
-
-
Hi thesacredpath! I have a similar issue in my website. Could you please help me too? I want to get rid of “Tipo de Projeto (Project Type)” from the title of my portfolio, but I can’t, do you know how can I solve it?
You can see the issue here: http://franciscacavalcanti.com/project-type/publicacoes/Thank you!
-
Hi @franciscacavalcanti, it looks like you are using WordPress but you are not hosted here at WordPress.com. For self-hosted WordPress sites such as yours using Argent, there is a dedicated Argent Theme support forum at WordPress.org where you can post your questions.
For general questions on self-hosted WordPress.org installations, visit http://wordpress.org/support/.
The differences between WordPress.com and WordPress.org.
What you are wanting to do isn’t something that can be accomplished with CSS. It will require you to make a child theme and then to modify make changes to some of the PHP in the theme.
- The topic ‘How to Change Portfolio Page Title’ is closed to new replies.