Problem with Rich Text in tables and WiX Blog

I have no idea what causes this problem!

Test site: https://anders160196.wixsite.com/version1/lifestyle-wellbeing

I am making a secondary navigation bar using a table that is connected to a dataset.
The database contain a Rich Text field, so the client can manually make the text bold / not bold.
However, when I add a Post list from the Wix Blog App, the formatting doesn’t hold?
(ps. I have two overlapping tables and Post lists, so that the site can be multilingual)

Any help will be much appreciated!

import wixWindow from ‘wix-window’ ; // Module required for checking current language

$w.onReady( function () {

// Check which is the current language, then hide / show the English / Chinese element.
if (wixWindow.multilingual.currentLanguage === “en” ){
$w( “#table1” ).show();
$w( “#table2” ).hide();
$w( “#LifestyleWellbeingEN” ).show();
$w( “#LifestyleWellbeingZH” ).hide();
}
if (wixWindow.multilingual.currentLanguage === “zh” ){
$w( “#table1” ).hide();
$w( “#table2” ).show();
$w( “#LifestyleWellbeingEN” ).hide();
$w( “#LifestyleWellbeingZH” ).show();
}

} );

Nevermind, I found a solution…
by changing the website font themes instead marking the “Bold”.
I am still curious why the WiX Blog seemed to interfere though…