Remove/add customization tool of image bounding box on restaurant menu widget

The restaurant menu widget has a feature that allows the user to insert an image to depict the menu item. However, when inserting the image, there is a bounding box that outlines the image itself. When adding a non-square image, this outline still creates a box which creates a visual difference in the image which the user may not like.

I propose an option to remove or customize the appearance of the bounding box outline.

1 Like

Hi @Collin_Hicks :wave:

Many thanks for sharing your awesome idea with us!

I’ll check with our dev team if anything can be done in your use case and get back to you :slightly_smiling_face:

Hi @Collin_Hicks,

You can use the following CSS code to remove the border around the image:

[class*="Image__ImageComponent"]::after {
  border: none;
}

Let me know if it works for you!

1 Like

This worked! Thank you!

1 Like