Portfolio/Projects
- The topic ‘Portfolio/Projects’ is closed to new replies.
Need help? Check out our Support site, then
Hi
I’m trying to set up a portfolio and can’t get it to look like the one on the Theme demo, ie
– the title set left (and different to the menu title – eg, Projects instead of Portfolio)
– a grid showing featured images with no titles or intro text
Moreover, my short portfolio – just set up so I could see how it works – has an odd typewriter font for the text, and I don’;t know why
Thanks!
Jules
The blog I need help with is: (visible only to logged in users)
Hi Jules!
As soon as you start adding portfolio items to your site, you can see those show up at this URL: https://julestoldme.com/portfolio/
You can then add the link to your menu using a custom link. More here: https://en.support.wordpress.com/menus/
Let me know if that solves things.
Sonia
That’s great Sonia, thanks, figured it out eventually!
Now, can you change the title of that landing page, so that it doesn’t say Projects?
And can you remove dates from blog posts?
Thanks!
Yes, it is possible. You can try something like this:
/* Hide "Projects" title and replace with new title */
.page-title {
display: inline-block;
margin-right: 5px;
overflow: hidden;
vertical-align: middle;
width: 140px;
}
.page-title:before {
content: "CustomText";
padding-right: 5px;
}
Depending on what your new text is, you’ll have to play around with the line that says width
.
Hope that helps.