I want to display some content in my post as strong text. so i am change the content with WordPress WYSIWYG Editor but it not display as BOLD text only displays like normal text
I want to display some content in my post as strong text. so i am change the content with WordPress WYSIWYG Editor but it not display as BOLD text only displays like normal text
Share Improve this question edited Dec 18, 2014 at 13:17 fuxia♦ 107k38 gold badges255 silver badges459 bronze badges asked Dec 18, 2014 at 13:11 RelaxRelax 1812 gold badges5 silver badges15 bronze badges2 Answers
Reset to default 0Hey Define bold and strong in your style.css file like this
b, strong {
font-weight: bold;
}
then it display bold
Amit Mishra answer is not working for me, but after adding !important it's worked well:
b, strong {
font-weight: bold !important;
}
You can place it on your page css.