bleak
bleak copied to clipboard
Implement bold in the theme
Hello,
I noticed that **sometext**
does not add bold to the text.
I think that is has to be implemented in css on the <strong>
element. (Ghost adds this to instead of **)
Thanks, THS-on
Hi @THS-on!
Could you share more of your input and output? I just did a test post with the following content:
This should be **bold**.
And I got the following preview:
So I'm successfully getting a bold output...
Hi.
here is my version. I use Firefox 50.1.0 on Arch Linux.
I don't have this problem in Chrome (Mobile and Desktop).
In html:
<div class="content">
<time class="date" datetime="2016-12-21">21 Dec 2016</time>
<p>This should be <strong>bold</strong>.</p>
</div>
It's probably another interpretation of the css. THS-on
The difference between Chrome and Firefox is the font-weight. Chrome:
font-weight: bold
Firefox:
font-weight: 200;