I am trying to add style to a tag generated from paragraph format plugin, like <p style="font-size:18px">some text</p>. Is it possible to do so? if not, is there any other way I can achieve the same, without forcing users to user both RTE paraformat and then style plugin?
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Hi @aemAmateur
You cannot add style tag directly to paragraph like <p style="font-size:18px">SomeText</p> in RTE.
But you can wrap the content within <p> with a class which will be applied to a <span> tag and the required style can be applied to the class such as:
RTE:
<p><span class="something">SomeText<span></p>
CSS:
.something{
font-size: 18px;
}
Please refer the Text Style section in the below Adobe link:
Thanks!
Hi @aemAmateur
You cannot add style tag directly to paragraph like <p style="font-size:18px">SomeText</p> in RTE.
But you can wrap the content within <p> with a class which will be applied to a <span> tag and the required style can be applied to the class such as:
RTE:
<p><span class="something">SomeText<span></p>
CSS:
.something{
font-size: 18px;
}
Please refer the Text Style section in the below Adobe link:
Thanks!
Views
Like
Replies