Here is the script that makes my menu:
function generate_jump_menu() {
global $config;
$output = '';
$image_count = array();
$output .= '<form id="jump-menu" action="#" method="get">' . "\n\t\t\t\t\t" . '<div>';
$output .= "\n\t\t\t\t\t\t" . '<select name="jump-menu" class="jump-menu" onchange="document.location.href=this.options[this.selectedIndex].value;">
<option value="#">'.site_tr('Jump to').'...</option>';
It produces a menu that looks like the one here:
http://www.doit.wisc.edu/accessibili...s/jumpmenu.htm
It's the default one you see everywhere. (like the scroll-bar on webmaster-talk)
I can change the background/text colour etc. via class="jump-menu" but it's the blue arrow i would like to change.
cheers
|