Even though I select 'align left', the text, when viewed on the website, is centered.
The HTML is this:
<p style="color: rgb(68, 68, 68); background-color: rgb(255, 255, 255);">
If I select to center it, it is this:
<p style="color: rgb(68, 68, 68); text-align: center; background-color: rgb(255, 255, 255);">
I changed HTML to this and all is fine.
<p style="color: rgb(68, 68, 68); text-align: left; background-color: rgb(255, 255, 255);">
But I don't want to have my users edit all the HTML when the correct alignment is selected.
Is there some global setting to make sure that this alignment will be correct?
The HTML is this:
<p style="color: rgb(68, 68, 68); background-color: rgb(255, 255, 255);">
If I select to center it, it is this:
<p style="color: rgb(68, 68, 68); text-align: center; background-color: rgb(255, 255, 255);">
I changed HTML to this and all is fine.
<p style="color: rgb(68, 68, 68); text-align: left; background-color: rgb(255, 255, 255);">
But I don't want to have my users edit all the HTML when the correct alignment is selected.
Is there some global setting to make sure that this alignment will be correct?
Comment