How to hide project titles in mobile version
- The topic ‘How to hide project titles in mobile version’ is closed to new replies.
Need help? Check out our Support site, then
Hi,
Can you tell me how to hide titles of projects in other then desktop versions (or make them appear exactly as in desktop version when you scroll over the project’s thumbnail). Thanks in advance:)
The blog I need help with is: (visible only to logged in users)
Hi,
You can use this custom CSS:
@media only screen and (max-width : 1024px) {
.project.small .title {
display: none;
}
}