Problem with Rich Text field

Hello,

When you connect a rich text field to a text element, it assumes that you want the text element to have the same styling as the one you set for the rich text field. If you don’t have any special styling, you can indeed use a simple text field.

Why is a simple text field not convenient ? Is it because editing it in the content manager is not convenient ?

If you insist on using a rich text field, you can try to set its value on the relevant text element using code instead of binding them through the ui. Your code will do something like:
$w(‘#dataset1’).onReady(() => {
$w(‘#text1’).text = $w(‘#dataset1’).getCurrentItem().richTextField;
});

(if the text element is inside a repeater, or if the data is updated during page view, you might need some more advanced code.)