"View All" button
- The topic ‘"View All" button’ is closed to new replies.
Need help? Check out our Support site, then
I’m trying to remove the “View All” button on the homepage, I tried the custom CSS but it didn’t work:
#projects-home .view-all {
display: none;
}
Any suggestions?!
The blog I need help with is: (visible only to logged in users)
This custom CSS should do the trick:
.view-all {
display: none !important;
}
Thanks so much