A Few Questions
- The topic ‘A Few Questions’ is closed to new replies.
Need help? Check out our Support site, then
1) I’m showing a portfolio on the homepage. Is there a way to avoid redundancy and not have the portfolio appear again as a separate page (and top menu item)?
2) How do I change the portfolio header text to something else when using a homepage template?
2) How do I change a social media icon? I already have the PNG art ready to go.
Thanks!
The blog I need help with is: (visible only to logged in users)
Hi,
1. You can set your own menu from Apperance -> Menus. Maybe you can remove portfolio from there.
2. You can try this css:
#section-portfolio .section-title {
visibility: hidden;
padding: 0;
margin: 0;
}
#section-portfolio .section-title:before {
content: "Photos";
display: block;
visibility: visible;
}
3. It will be hard to change the icons as these icons are actually not images but fonts. Replacing those will be hard. But you can use a footer widget with your custom html and css. You could find some tutorials online like this one: https://premium.wpmudev.org/blog/social-media-css-sprites/
Thanks,
Chandra