MyBB Community Forums

Full Version: Invisible Postbit Message
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
URL: http://uzigaming.org

For some reason, when I edited my postbit, the actual message became invisible one way or another. Some posts are fine then randomly the next one isn't. There's no type of pattern what so ever. Example:

Needs fixing:
[Image: KAFrispHcI.png]

Fine:
[Image: p7GgiUNBFD.png]
URL?
You probably have to add the following style in your global.css;
.post_body a:link, .post_body a:active, .post_body a:visited{
color: #FFFFFF !important;
}
(2013-01-17, 01:31 PM)Yaldaram Wrote: [ -> ]You probably have to add the following style in your global.css;
.post_body a:link, .post_body a:active, .post_body a:visited{
color: #FFFFFF !important;
}

Didn't work. Huh

Sorted this myself.

<div class="post_body" id="pid_{$post['pid']}">
					{$post['message']}
				</div>
				{$post['attachments']}
				{$post['signature']}

				<div class="post_meta" id="post_meta_{$post['pid']}">
				{$post['iplogged']}
				</div>

Thanks though. Smile