Hi,
I am using CK Editor and While using this I want to Hide the HTML tags which shows while Editing.
Screenshots:
I want to hide the "body h1 span"
Hi @Harbor V,
Simply you can inspect the element and see which class is added there and hide the section using redefine class in CSS and overwrite the display property.
As i did in demo module.
.cke_path_item{
display: none;
}
I also attached OML
Kind regards,
Sanjay Kushwah