Hi am using a muli language site. i have flags on each page to select the language and I would like these to be alined in a row and on the right hand side of the page. I have them now on the left and in a list format. Is the code below correct to change the position and where should I place it? Cheers! #flag_move{ position:absolute; margin-top:5px; margin-left:40px; z-index:7; } #flag_move li{ display:inline; }
without seeing the html how can somebody test and tell you if this wil work or not. also "absolute" positioning may give you some problem on diferent resolutions. vineet
Sorry for being naïve, what html do you need to test if it works? <?php echo qtrans_generateLanguageSelectCode('both'); ?> in in my header file. The flags show up. The code from unigogo looks good, I put it in my style.css under the /*Basic classed and ids, used on pretty much every page*/ but no change to the position... any ideas?
#flag_move{ float: right; margin-top:5px; margin-right:40px; z-index:7; display:inline; } #flag_move li{ float: left; } let me know if this works.