Bold text not displayed
Hi,
Recently adding bold to text has no effect. It does show up in the post before submitting, but when reading the submitted post afterwards no bold text is seen. If I open the submitted post for editing the bold appears again, but after re-submitting it is gone. Here's a post that should have lots of bold text:
http://gunsnroses.lefora.com/2009/07/10/interview-with-josh-freese-in-musicradarcom-july-9/page1/
worked for me here on safari on a mac. anybody else having an issue?
worked for me here on safari on a mac. anybody else having an issue?
-chief
Test. Worked here. But not on my forum....
I have found the root of the problem. I recently added some CSS code to remove the bold from the Ranks:
strong, b {
font-weight: normal;
}
Apparently this removes ALL bold text style, not only from the Ranks but also from the posts. Does anyone have any idea what CSS I can use to only remove bold from Ranks while still keeping bold in posts?
Try this (I've not tested it tho')
.posts_user_status, .posts_user_stat {font-weight:normal;}
Hehe, I actually tested that right before you suggested it. And I tested adding "text-decoration:none;" to .posts_user_status, .posts_user_stat, too, but none of them helped. Thanks for the suggestion, though.
So what you want is to remove the bold from the strong element inside a post_user_status, so the css would look like this:
.posts_user_status strong {font-weight:normal;}That should do it.
Locked Topic
You must be a member to post in this forum