Qtranslate flags in navbar menu
-
I pasted this code in .php :
// Adds a widget area to house qtranslate flags. Will need styling. if (function_exists('register_sidebar')) { register_sidebar(array( 'name' => 'Extra Widget In Socials', 'id' => 'extra-widget', 'description' => 'Extra widget in the social links area', 'before_widget' => '', 'after_widget' => '', 'before_title' => '', 'after_title' => '' )); } // Place the widget area in the social links area add_filter ('tc_social_in_header', 'add_my_widget'); function add_my_widget() { if (function_exists('dynamic_sidebar')) { dynamic_sidebar('Extra Widget In Socials'); } }
What css do I need for setting up flags in one row ?
MY PAGE
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Qtranslate flags in navbar menu’ is closed to new replies.