issues
issues copied to clipboard
HTML Page doesn't show as in Live Preview
Since version 3.4.6, I have noticed that HTML exports look nothing like the Live Preview with therms of how the margins are supposed to look.
versus
Not sure if it's me or something 😕
Thank you for your time to read this.
Update: I found that what was missing was the "content" class in the body tag
So the application is not simply adding said class to said tag. Because now it works fine after manually adding the content class to the body tag.
We will fix this. Thanks for reporting.
No thank you! Your editor is great and I like to use it!
As the bug not yet fixed, here's a workaround. In an exported html file there is a class:
.content {
width: 100%;
max-width: 700px; /* 700px is the width of the post in Medium */
...
}
but no html tag in an exported file has this "content" class assigned. You can add this class="content" to the
tag for example:<body class="content">
...
</body>
and then it works: