Craft / how to delete borders around each painting+title?

Topic summary

A user is seeking help to remove borders appearing around paintings and titles in the Craft theme.

Proposed Solution:

  • Add custom CSS code to eliminate the borders
  • Target the specific CSS classes for paintings and titles
  • Use border: none; property for both elements

Implementation Details:

  • Replace .painting-class and .title-class with the actual CSS selectors from the theme
  • The code needs to be identified and customized based on the site’s specific markup

Status: The question has received a technical response with CSS code, but implementation depends on identifying the correct selectors in the user’s specific setup.

Summarized with AI on November 17. AI used: claude-sonnet-4-5-20250929.

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;
}