Style Content with button/link and with NO heading and body text it doesn't align correctly and in some cases the button expandsDescriptionWhen creating a Styled Content with Button/link without any heading and body text, the alignment is incorrect when the Styled Content is of type Banner and it expands if it is of type BlockSteps to Reproduce 1. Navigate to Content Library and create a New item Portal > Style Content2. Select Content Style : Banner3. Fill in the required fields, keep heading text and body text empty4. Select Call to action: Button/Link5. Fill in button/link title and choose link6. Create a publish plan to a Content Experience Widget instance and preview in portal.Actual: Text alignment setting does not work for button if body and heading text are not present (Banner) Expected: Text alignment setting should work for button if body and heading text are not present.WorkaroundThis issue will be fixed in Content Publishing November 2024 version (v33) Alternatively the issue can be fixed by modifying the "CE Styled Content" widget (ce-styled-content) as instructed below: Go to the Client Script of the widgetLook for getText() function, and in that function look for the below lines:"if (!(item.heading_text || item.body_text)){ return ''; }"Replace them with the below lines:"if (!(item.heading_text || item.body_text || item.url)) { return 'empty'; }"Related Problem: PRB1796190