Hi Patrick,
Thank you for the additional detail. I just want to check is it classes that look like this block-549dc7a2-5815-4090-9fb1-c6050099408f
that you’re referring to?
If so, these are essential for the plugin to function correctly. These are dynamically created classes that are unique for each block and make it possible for the plugin to apply styles within the head of the site.
For example within the plugin, if you change the padding or margin for a block using the settings panel, the plugin will then generate styles and attach them to this unique class, without it that wouldn’t be possible. Here’s an example of a style that gets created when I apply padding to a block.
.block-549dc7a2-5815-4090-9fb1-c6050099408f {
padding-top: 100px;
padding-bottom: 100px;
}
For any additional classes that are added other than the default Bootstrap classes, there is most likely a reason for it and removing them would have knock on effects for the plugins functionality.
Hopefully, this clears it up for you but if not, please let me know and I will try my best to help you.
Thanks
Miles