[ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]
Yes.
first disable the widget.
Now you need a call which is <?php echo do_shortcode('[gtrans]'); ?>
If you want to have even more control than wrap that code like this <div class="gtrans"><?php echo do_shortcode('[gtrans]'); ?></div>
Then in your style css add this
.gtrans {
bottom:0;
position:fixed;
z-index:160;
_position:absolute;
_top:expression(eval(document.documentElement.scrollTop+
(document.documentElement.clientHeight-this.offsetHeight)));
height:20px;
}
That will place it at the bottom of the browser. If you want it at the top then change the word "bottom" in the code to "top"
If you want to do as i have done and put in in a far right corner then add this to your style css instead
.gtrans {
bottom:0;
position:fixed;
z-index:160;
_position:absolute;
_top:expression(eval(document.documentElement.scrollTop+
(document.documentElement.clientHeight-this.offsetHeight)));
height:22px;
float:left;
right:0px;
}
If you want to change from right to left simply swap the left and right commands in the code and bottom for top if you want it at the top of the browser.
If you add a pixel count where it says right:0px it will move the language box away from the edge. The height will move it up or down.
That should be enough information to give you all the control you need.