Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on a project where I am using the excellent twitter bootstrap as a basis. Now I want to create a menu item where the visitor can choose what language the site should be displayed in. This has was not as easy as first expected and I wonder how I do the following.

  1. Make the drop down menu item float to the right.
  2. Include a small flag on the individual li items.
  3. Make the active language show on the menu, meaning depending on which li item is active it should be in the menu.

in the menu.

All help is appreciated.

/Sten

share|improve this question
1  
What have you tried? – durron597 Dec 4 '12 at 17:20
Using flags for language is a problematic idea. See stackoverflow.com/questions/1824005/… – James Mohler Dec 5 '12 at 8:01

2 Answers

You should know that the community is all about helping each other out but you will not find anyone to do the work for you. If you are looking for that, try Elance. Otherwise, search Google and make an attempt at it and post some code. From there you will find that you will get to a solution much more quickly.

share|improve this answer
Thank you. You are right, was just tired of not understanding how to go about solving the problem. I solved the issue and will post the answer below. – StenW Dec 7 '12 at 14:41
up vote 0 down vote accepted
  1. To make the drop down menu float to the right add [ul class="nav pull-right"], this works on all menu items. Add it before the drop down.
  2. I found the flag icons and a tutorial on how to integrate new css sprite icons in Twitter Bootstrap. It explains in a more comprehensive manner than I can, so I would suggest to follow the link.

http://favbulous.com/post/1006/create-custom-icons-for-twitter-bootstrap-easily

3. I have not yet understood how to make the active link show up on top of the menu bar, but decided to work around the problem since I will have to create individual sites for all the different languages.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.