admin管理员组

文章数量:1336148

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 badges
Add a comment  | 

2 Answers 2

Reset to default 0

Hey 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.

本文标签: wysiwygstrong tag not working in WordPress 401