html - Change order of nav items in responsive design -


i using cascade framework , have simple header logo, select, , link external site.

my fiddle here

the layout if fine in desktop mode. in responsive mode, looks like:

--------------------------------------------- company name --------------------------------------------- volvo --------------------------------------------- menu here --------------------------------------------- 

whereas i'd following in responsive mode:

--------------------------------------------- company name                        menu here --------------------------------------------- volvo --------------------------------------------- 

these answers suggest using flexbox or jquery. can't use flexbox because need ie8 support. i'd rather not have resort jquery since seems should rather straight forward css solution. answer on page shows ton of css i've been trying adapt use case , didn't fix issue either.

how using absolute positioning?

.menuhere {     position:absolute;     text-align:right;     right:0 } 

http://jsfiddle.net/6txfvvo6/3/


Comments

Popular posts from this blog

php - Submit Form Data without Reloading page -

linux - Rails running on virtual machine in Windows -

php - $params->set Array between square bracket -