MyBB Hacks

Full Version: vB Quote
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10
(05-20-2010 11:14 AM)Walkman 5.0 Wrote: [ -> ]Frown this dont work on mybb 1.6

I have tried it. It works with 1.6 beta (1.5). You need to change:

PHP Code:
		'compatibility'	=> '16*',

to

PHP Code:
		'compatibility'	=> '15*,16*',


And change

PHP Code:
$GLOBALS['mybb']->version_code >= 1600

to

PHP Code:
$GLOBALS['mybb']->version_code >= 1500

(04-02-2010 10:39 AM)ZiNgA BuRgA Wrote: [ -> ]Sure, here's a mod of v1.1 for MyBB 1.4 which should do it.

Note that you may need to modify your theme to stop the username from floating to the right...

ok, yes it floats to the right ... how do i edit this in the theme or what do i look for and change or what?

Thanks
Probably in the global.css of your theme, under "blockquote cite span".  Try removing the float value.
(06-06-2010 07:40 PM)ZiNgA BuRgA Wrote: [ -> ]Probably in the global.css of your theme, under "blockquote cite span".  Try removing the float value.
blockquote cite span
{
    float: right;
    font-weight: normal;;  (is this normal the double symbols?)
}

sorry so I have to remove the "float right;" ?
or do I replace right to left?
(06-07-2010 08:07 AM)Technoman Wrote: [ -> ]font-weight: normal;;  (is this normal the double symbols?)

I think you should use only one symbol.

(06-07-2010 08:07 AM)Technoman Wrote: [ -> ]sorry so I have to remove the "float right;" ?
or do I replace right to left?

Personally, I prefer to remove the "float: right;"
a. I dropped the ;; to ONLY 1 ; like you said
b. removing the "float right;" made the plug in work

Question though what did removing the float actually do and since it did say right and thats where it was forcing the name of the user why wouldnt left of fixed it? As you can see I am in no way knowledgeable to understand so this why I ask questions to what I am asked to do.

Thanks
If you change the "float" to "left", there is no space between "Username" and "Wrote". So, you need to add a padding or margin to separate them. That's why I prefer removing the "float: right;"
Thanks for the explanation!
You're welcome, Technoman Smile
another thing that I just noticed

this site has a green arrow after username quote but on my localhost the arow isnt there but it was there before I installed this   can you tell me where I can fix this or try to find the culprit

1st pic showing no arrow on my localhost --->  2nd pic arrow is showing
Pages: 1 2 3 4 5 6 7 8 9 10
Reference URL's