The following warnings occurred:
Warning [2] Undefined array key "threadviews_countguests" - Line: 745 - File: showthread.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/showthread.php 745 errorHandler->error_callback
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/inc/functions_post.php 830 postParser->parse_message
/showthread.php 916 build_postbit
Warning [2] Undefined property: MyLanguage::$thread_modes - Line: 46 - File: showthread.php(1650) : eval()'d code PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/showthread.php(1650) : eval()'d code 46 errorHandler->error_callback
/showthread.php 1650 eval




Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Small css bug/question
#2
I would recommend the following. be careful: that's not the best option but a workaround for the problem.

1. change the implementation of createNavTab, add the name of the plugin as first parameter
Code:
function createNavTab($plugin, $url,$txt) {
    echo "<li><a href='".$url."' class='".$plugin."' />";
    echo $txt;
    echo "</a></li>";
}

2. add a hook
Code:
add_action('nav-tab', 'createNavTab',     array('myplugin', 'myplugin.php','My Plugin'));
add_action('header',  'mypluginAdminCSS', array());

3. declare a function:
Code:
function mypluginAdminCSS() {
    echo '
    <style type="text/css">
        #myplugin  .wrapper .nav li a.myplugin { color:#182227; background: #F9F9F9; font-weight:bold !important; }
    </style>
    ';
}

this solution is only a workaround! i think, the plugin developer should not take care of the view representation of the tab. the better way would be to take selectors like ... and ...
Code:
.wrapper .nav li.active a
.wrapper .nav li a
Reply


Messages In This Thread
Small css bug/question - by yxcvbnm - 2010-03-04, 23:36:22
Small css bug/question - by yxcvbnm - 2010-03-05, 00:57:23
Small css bug/question - by Zegnåt - 2010-03-05, 08:45:54
Small css bug/question - by yxcvbnm - 2010-03-05, 18:10:57
Small css bug/question - by ccagle8 - 2010-03-05, 21:28:19



Users browsing this thread: 1 Guest(s)