Is there a way to adjust the project Excerpt font size that appears on Portfolio grids on mobile devices?
We see the Project name itself is H3, and can be adjusted per device in the responsive settings, but the project Excerpt, where we are inserting the name of the client, isn't controlled by any of the sliders in the theme's typography responsive settings. Is there another way to adjust this element?
Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):
@media only screen and (max-width: 690px) {
.portfolio-items .col .work-info .vert-center p {
font-size: 15px !important;
}
}
Is there a way to adjust the project Excerpt font size that appears on Portfolio grids on mobile devices?
We see the Project name itself is H3, and can be adjusted per device in the responsive settings, but the project Excerpt, where we are inserting the name of the client, isn't controlled by any of the sliders in the theme's typography responsive settings. Is there another way to adjust this element?
Thanks!
Hey Again,
Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):
Thanks
ThemeNectar Support Team
Thanks! That did it.