MyBB Community Forums

Full Version: Bug
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi there,
Every word on my forum starts with a capital letter....
How can i fix this BUG?

Kind regards,
Wesley
Do you have a link to your forum?
Which plugins/mods do you have installed?
And which character set are you using?

This can't be a bug.
You can see it here:
http://dutchhtml.byethost31.com/GOF/

It's by the way a Dutch Forum....
I quote destroyer:
destroyer Wrote:Which plugins/mods do you have installed?
I've all my mods/plug ins deactivated!
And i got still the same problem.

All my mods/plugins are:

Classic Reputation System
Forum Warning System
Hello World!
Show the users that has been online today
Wordcount Recount plugin
Shoutbox
Status in profile
Thank you
Usergroup legends
Dude, WesleyW. Calm down. You don't need anything 'quick'. First of all, it's not a major issue. Hell it's not even a normal issue. It's very minor, and its barely noticeable. And unless anyone's dying you can WAIT. Learn to be patience, you impatient people. You just posted that 2 hours ago. It's very rude, we are not 'on demand support'. http://community.mybboard.net/showthread.php?tid=11034 - Read #3. It might also benefit you by reading the rest too.

This is definitely not a bug with MyBB itself. Moving to general support.

My best suggestion is that you re upload showthread.php, functions_post.php, and the inc/datahandlers/ folder. If that doesn't work, Try deactivating your plugins one by one to make sure it's none of your plugins. If you do find the plugin thats affecting it, deactivate it, and reactivate the others.
Alright, im sorry mate.

-------
Back to the point; i've done your suggestion.
But i got still the same problem.....

By the way, in the begin, i got the same problem!
Maybe when you created the forums you added capital letters to the names of your forums?
And maybe your users just type each and every word with a capitol letter?
Oh I found the problem.

In your Additional CSS in your theme you have this:
<html>
<head>
<style>

body { text-align: justify; }
p { text-transform: capitalize; }
h2 { letter-spacing: 5px; }
ul { word-spacing: 10px; }


</style>
</head>
<body>
<h2>CSS Text</h2>
<p>This paragraph was written in traditional english, but text-transform is making every
first letter capitalized.  We also have the body set to justify text.  This makes for a
nice, crisp looking website.  Please feel free to experiment with CSS Text and replace our
CSS code with your own.</p>
<ul>
	<li>This list has a word-spacing</li>
	<li>value of 10px</li>
	<li>Very neat</li>
</ul>
</body>
</html>
The above contains "p { text-transform: capitalize; }" which capitalizes everything.

Remove it and it will be gone.
Pages: 1 2