Hello
Would you know how/where to delete borders around each painting+title?
Craft theme
Here / featured artworks
www.rudymeyerstudio.com
tks
Thanks
A user is seeking help to remove borders appearing around paintings and titles in the Craft theme.
Proposed Solution:
border: none; property for both elementsImplementation Details:
.painting-class and .title-class with the actual CSS selectors from the themeStatus: The question has received a technical response with CSS code, but implementation depends on identifying the correct selectors in the user’s specific setup.
Hello
Would you know how/where to delete borders around each painting+title?
Craft theme
Here / featured artworks
www.rudymeyerstudio.com
tks
Thanks
Add the following CSS code to target and remove the borders around the paintings and titles. Replace .painting-class and .title-class with the actual CSS classes or selectors you identified.
/* Remove border from paintings */
.painting-class {
border: none;
}
/* Remove border from titles */
.title-class {
border: none;
}