View Single Post
Old 07-22-2010, 04:20 PM  
Zverka
Confirmed User
 
Zverka's Avatar
 
Join Date: Jun 2005
Location: EU
Posts: 281
Quote:
Originally Posted by TeenCat View Post
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
__________________
Zverka is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote