hi I’m trying to create borders around image similar to
currently i have this
hi I’m trying to create borders around image similar to
currently i have this
Hi Curtis,
Thanks for writing in! If you’re using Cornerstone’s Image element, you can use it’s border section to set your border options.
If you’re using Gutenberg editor, you can assign a unique CSS class into your image block (my-image-border
)
Then you can add your custom CSS rule into your X -> Theme Options -> CSS area and change CSS property values accordingly.
.my-image-border img {
border: 1px solid gray;
}
Hope that helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.