Hello.
I have a question about function show_page_menu.
Is it possible to determine which colour would be the font of this menu?
Code:
<?php $menuClass = 'superfish nav clearfix';
<ul class="<?php echo $menuClass; ?>">
<?php if (get_option('minimal_home_link') == 'on') { ?>
<li <?php if (is_front_page()) echo('class="current_page_item"') ?>>"><font color = #ffff00><?php _e('Portaalist','Minimal'); ?></font><?php }; ?>
<?php show_page_menu($menuClass,false,false); ?>
I want my menu to be in yellow font.
Example is here: http://kavand.kodulehetegemine.ee/
Any help would be nice.
Thank you!