Remove "more projects" text or alter the text with CSS
-
Hi there,
Just wondering if it is possible to remove the text “more projects” or alter the text with CSS on the espied theme in the portfolio pages…?
Any help would be greatly appreciated thanks :)
The blog I need help with is: (visible only to logged in users)
-
You can remove the text completely by adding this in to your custom CSS:
.single-jetpack-portfolio .project-navigation h1 { display:none; }To replace it with alternate text is a little bit more complicated but still possible, try using the following instead:
.single-jetpack-portfolio .project-navigation h1 { visibility:hidden; line-height:0; } .single-jetpack-portfolio .project-navigation h1:after { visibility:visible; display:block; content:"Some new text"; line-height:1.5; } -
-
I know this is a long shot but is it possible to completely remove the three thumbnails below “more projects” …? thanks :)
-
I assume you want to remove the entire section (the title and the project links), and this can be done with:
.single-jetpack-portfolio .project-navigation { display:none; } -
- The topic ‘Remove "more projects" text or alter the text with CSS’ is closed to new replies.