Hide page name
-
Good morning, I am using a theme with portfolio and when i use css code:
.page .entry-title { display: none; }i can hide the pages name (services, about us, contacts), but the images hoover and link on the front page (home) disappears. Can you help me, please?
The blog I need help with is: (visible only to logged in users)
-
Hi @fullcreativestudio, I don’t see the code you reference in your custom CSS. What I see right now is
#page-title { display: none; }When I put the following into you customizer, the titles on the pages disappear.
.page .entry-title { display: none; }i can hide the pages name (services, about us, contacts), but the images hoover and link on the front page (home) disappears.
When I go to your Services and about us page, I’m not seeing any images that link to your home page. Did you get this figured out? If not, can you explain a bit more about what you are wanting to change?
-
Hi thesacredpath. Thank you for your reply.
So if I put your code the page title disappear? My main problem is when I put the CSS code I can hide the page title but the code also messes up my home page.
I have images in my homepage that normally when I pass the mouse over the image goes darker and shows the name. With the CSS code to hide the page title in the services, about us and contacts pages the images in the home page don’t behave like that.With the code you gave me does it do that?
Once again thank you very much.
-
Ah, ok. We can use the pseudo “not” class to exclude the home page from this rule. It would look like this.
body:not(.home) .entry-title { display: none; }That hides the titles from all pages except for the home page.
-
-
- The topic ‘Hide page name’ is closed to new replies.