MyBB Community Forums

Full Version: Add class (image) to language name
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, how do you add a div class to mybb language name so that i can put a flag image-icon next to the language name in select option
forexample here is the language
// The friendly name of the language
$langinfo['name'] = "English";


I want to make the select language in footer to look like this
[Image: yb5d.png]



Thanks.
Hi, thank you for sharing the helpful links. However i'm bit confused, could you please modify or do it for me because i have no idea where to start.

Here is the footer_languageselect code. Thanks

<form method="{$lang_redirect_url['form_method']}" action="{$lang_redirect_url['location']}" id="lang_select">
		{$lang_redirect_url['form_html']}
		<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
		<select name="language" onchange="MyBB.changeLanguage();">
			<optgroup label="{$lang->select_language}">
				{$lang_options}
			</optgroup>
		</select>
	
	</form>