Archived topic
site title in header has a link to home page
5 replies · Started by CRISTO on December 6, 2019
Somewhere, a while back, I put a link in the title of my header that is underlined and takes you back to the home page regardless of what page you are on. I don't want that anymore, but not sure how to get rid of it.
It may be some custom css but I am not sure.
Hi Cristo,
Site title is linked to the home page by default.
You can remove the link with this PHP snippet:
https://docs.generatepress.com/article/generate_site_title_output/
Adding PHP: https://docs.generatepress.com/article/adding-php/
Let me know if this helps :)
Not sure I made myself clear. For example on this site my title shows up in the header not underlined and not linked to anything. My other site has the title underlined and linked in the header.
For example on this site my title shows up in the header not underlined and not linked to anything.
It doesn't have underline but it does link to the home page which is the default:
https://www.screencast.com/t/6SNJqSGuM
If you want to remove the link, the PHP snippet I linked above is required.
I just want to remove the underline.
Add this CSS:
.main-title a, .main-title a:hover, .main-title a:visited {
text-decoration: none;
}