MyBB Community Forums

Full Version: Where is the Postbit Userstar template??
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
It's a clean installation and no plugins... and for good measure I did run the test:
Quote:Congratulations! No corrupt files have been found on your installation.

Makes no sense to me either...


fyi:
prototype is disabled since it's not compatible with jQuery... I'll have an alternative made for prototype later.
^ prototype is not related in showing group star images.
can you test by posting a message with some images side by side (for eg. use star image code like below)
[img]http://localhost/forum/images/star.gif[/img] [img]http://localhost/forum/images/star.gif[/img] [img]http://localhost/forum/images/star.gif[/img] [img]http://localhost/forum/images/star.gif[/img] [img]http://localhost/forum/images/star.gif[/img]
There is no hardcoded HTML in 1.8, you might need to wait if you don't want to edit core files. You could try constructing it yourself? Not good with jQuery, so I'm not sure if it can be done, but the relevant information is on line 286 (or thereabouts) in inc/functions_post.php.
AH ha! sorry I've been super busy producing an online show, so haven't spent much time on this, spending some time now since I'm waiting for an appt. so I made a post with:
[img]http://localhost/mybb169//images/star.gif[/img][img]http://localhost/mybb169//images/star.gif[/img][img]http://localhost/mybb169//images/star.gif[/img][img]http://localhost/mybb169//images/star.gif[/img][img]http://localhost/mybb169//images/star.gif[/img][img]http://localhost/mybb169//images/star.gif[/img][img]http://localhost/mybb169//images/star.gif[/img]
And I get vertical stars..
[attachment=29758]

So I'll try a few things but hopefully this is just a css/html issue.

Any ideas?
^ can you add inline display for the images (at the bottom of global.css) and check it (force it if required)
oh cool, was just checking and inline-flex (flex boxes) are now an option in firefox! https://developer.mozilla.org/en-US/docs...ible_boxes
and a nice tut I found on it as well
http://css-tricks.com/snippets/css/a-guide-to-flexbox/
It seems Flex Boxes does on it's own exactly what most of these frameworks do without the javascript.

anyway,
No wonder, standard Foundation by Zurb doesn't have anything for img css other than border 0...
I could have sworn it had at least a display property but no..
So I added:
display: inline !important;
(display: inline-flex !important; also works in safari!)
and now everything looks good! gezz... it's the simplest things.. thank you .m. +rep for you!
Pages: 1 2