Hi im trying to get the images in marked section to be rounded with border-radius setting, like the rest of the sections, but I can’t seem to locate the needed selector. Could anyone help me out with that please!
There’s a setting in theme editor to do that, but I only want the rounding to apper on desktop version.
You can target that specific area with a media query so the rounding effect is only on desktop. Inspect the images to get their section or class (for example .marked-section img) and add a CSS like this:
@media only screen and (min-width: 1024px) {
.marked-section img {
border-radius: 12px; /* adjust as needed */
}
}
This gives the border radius only to windows larger than 1024px, leaving mobiles intact. Change the class to your section’s exact selector for the images.