Quote:
Originally Posted by TeenCat
oh, thank you zverka. but, it is more complicated, as the button is generated ... i will be back at gfy tomorrow, with not drunk brain. thank you everyone, enjoy the heat! 
|
Ok you need to figure out "id" for the button (button id inside html) as here
<input type="submit" name="buttonid"
id="buttonid" value="My button" />
the best way is looking in generated html code (view source in browser)
and after that you can add to css this line
#
buttonid {
position: absolute;
top: 0px;
left: 0px;
}
or
#
buttonid {
position: fixed;
top: 0px;
left: 0px;
}
and of course change buttonid with yours
