The qTranslate Widget creates a list, which can be formatted to be vertical or horizontal. The Code generated looks as follows (don't copy paste to your website, it won't work, use the widget instead):
- Code: Select all
<ul class="qtrans_language_chooser">
<li class="active"><a href="/qtranslate/faq/" class="qtrans_flag qtrans_flag_en"><span>English</span></a></li>
<li class="active"><a href="/de/qtranslate/faq/" class="qtrans_flag qtrans_flag_de"><span>Deutsch</span></a></li>
</ul>
So to remove bullet points, add this CSS line (to your theme's style.css):
- Code: Select all
.qtrans_language_chooser { list-style-type:none }
A Horizontal List can be made by adding this CSS line:
- Code: Select all
.qtrans_language_chooser li { float:left; margin-right:3px }
A border around the flags can be added with:
- Code: Select all
.qtrans_flag { border:1px solid #b6b6b6 }
The best way if to learn CSS and customize it to match your needs.