MyBB Community Forums

Full Version: Font, Text Sizes, under new thread gone
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
am having some issues with mybb i tried reinstalling everything without a theme & without any plugins but the issue seems to continue
heres the issue am having
am not sure if it's a issue with my domain/host because when i tried on a free host it worked just fine
[Image: F9UQ2nt]

*Note it's only like that in chrome & for all chrome users including bots from browsershots.org

any help is appreciated

http://imgur.com/F9UQ2nt
Looks like a broken image. Can we get a domain to see it live?

(2012-07-17, 07:27 PM)Fábio Maia Wrote: [ -> ]In your headerinclude template find:

<script type="text/javascript" <script type="text/javascript" 
jQuery.noConflict();
src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>

Replace with:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">jQuery.noConflict();</script>

And save the template. That part was pretty messy. Even if it wasn't, you were trying to use jQuery before actually loading it, which simply doesn't work. I also took the liberty to update the file to 1.7.2, the latest version.

How I love the search feature! This should help you!
i dont seem to have any of those SpiritRocks
http://i.imgur.com/icwo49l.png
It's most likely caused by jQuery conflict. Check your headerinclude template - make sure you load jQuery library only once and after it there is
<script type="text/javascript">jQuery.noConflict();</script>
Then change every "$" in jQuery scripts to "jQuery".
Look this topic http://community.mybb.com/thread-135747....ght=jquery for further guidance or post headerinclude template if you still don't know what to do.

Can also be caused by minifying JS files, make sure they're not.

Edit: In the bottom of your screenshot there is function dismissANN, change every $ to jQuery in it. Also in any other jQuery script.
@Destroy666
didnt work