Hi need to hide a specific element on mobile view. I know that I can hide a coloumn, but I have to hide quote element under profile pic (you can see on url).
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) {
.page-id-6279blockquote.nectar_single_testimonial {
display: none !important;
}
}
Hi!
Hi need to hide a specific element on mobile view. I know that I can hide a coloumn, but I have to hide quote element under profile pic (you can see on url).
Which is the best solution?
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):
@media only screen and (max-width: 690px) { .page-id-6279 blockquote.nectar_single_testimonial { display: none !important; } }
Thanks
ThemeNectar Support Team
Thanks, it worked!