I have an issue with the post grid element, when it's viewed in mobile view. It does not occur on a desktop screen or tablet. What happens, is that the first and the last element loose their rounded two top corners, interestingly not the middle one of those three. I did not manage to fix that with css os far.
Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):
@media only screen and (max-width: 690px) {
body.material .main-content .nectar-post-grid .nectar-post-grid-item .inner {
overflow: hidden !important;
border-radius:15px !important;
}
}
I have an issue with the post grid element, when it's viewed in mobile view. It does not occur on a desktop screen or tablet. What happens, is that the first and the last element loose their rounded two top corners, interestingly not the middle one of those three. I did not manage to fix that with css os far.
Attached files: Bildschirmfoto 2023-06-23 um 12.44.00.png
Bildschirmfoto 2023-06-23 um 12.43.43.png
Hey Again,
Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):
Thanks
ThemeNectar Support Team
Perfect, works like magic!