MyBB plugin conflicting with CSS?

Reverse Flash

Paragon
Joined
Mar 22, 2015
Messages
1,480
Reaction score
1
FP$
1,462
iq3cAUw.jpg


Code:
<?php

// disallow direct access to this file for security reasons

if (!defined ('IN_MYBB')) {
    die ('sorry, this file can't be accessed directly');
}

// hooks

$plugins->add_hook ('index_start', 'do_stuff');

// functions

function do_stuff () {
    echo 'whoo, my first plugin';
}

// info about the plugin

function mybbplugin_info ()
{
    return array (
        'name'          => 'mybbplugin',
        'description'   => 'my first plugin',
        'website"'      => '',
        'author'        => 'khanfusion',
        'authorsite'   => '',
        'version'       => '1.0',
        'guid'          => '',
        'codename'      => 'mybbplugin',
        'compatibility' => '*'
    );
}

function mybbplugin_install () {

}

function mybbplugin_is_installed () {

}

function mybbplugin_uninstall () {

}

function mybbplugin_activate () {

}

function mybbplugin_deactivate () {

}

As seen in the screenshot, the h2 is really small. (usually it's 36px [height] but it's been messed up by the plugin...)

Help?
 
Moving this to solved support requests for the time being due to inactivity. 🙂
 
Back
Top Bottom