adding a background to the card element in cornerstone page builder custom css
Hi @ehingl2,
This is a customization request which is outside of our support scope. We will do our best to show you how to implement the feature, but we will not be able to implement it for you.
It is not recommended to add background image for the Card element as it might show incorrectly in older browsers due to the CSS 3D effect. The code below adds the background image, but please consider there is no guarantee that it will work correctly for older browsers or some mobile browsers:
.x-face-outer.front {
background: url(BACKGROUND) no-repeat 0 0;
background-size: cover;
}
Replace
BACKGROUNDwith the URL of the background image that you want to use.
Thank you.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.