There is a way! All CSS code must be converted to classes first. The classes must be put in the CSS box for the Theme. Go to [Page Settings]->Design->Theme->Customize. Don't add the style tags - that is automatic. All the classes will be put inside of a style element.
Many elements will end up having multiple classes; to combine them, add them all to just one class statement. For example
<table class="CollapseBlueBorder Pad5">
where CollapseBlueBorder and Pad5 are separate classes.
There is one problem still with the <div> statements; the Content block strips them out. The HTML block will keep the <div> statements, but there is no easy way to add content to an HTML block.
Code
Post Reply
Delete Post
You are allowed to delete your post for 5 minutes after it's posted.
Many elements will end up having multiple classes; to combine them, add them all to just one class statement. For example
<table class="CollapseBlueBorder Pad5">
where CollapseBlueBorder and Pad5 are separate classes.