sign in popup window css name

i want to change position of sign in popup window. i cant find it css name. please help me
0
Best Answers
-
whu606 MVP
@Chanux - if you use a custom.css in your themes folder you don't need to look for a rule, you simply write a new one.
Normally the custom.css rule will overwrite a rule from another css file.
If it doesn't, you can always add the
important!
attribute.Also, be aware that elements can be members of more than one class, a general, and a specific.
<div id="Popup" class="Popup SignInPopup" style="top: 88px; left: 0px;">
If you only want to affect the sign in box, you should set a rule for the class 'SigninPopup'.
0
Answers
13 mins give ppl a chance.
There was an error rendering this rich post.
@Chanux - given the questions you ask, it's been suggested before that you learn to use Firebug in Firefox.
Using Firebug, it is clear what element you need to work on to solve this issue.
yah.. im using firebug. sign is box is popup box. bcz i cant find css
@Chanux - if you use a custom.css in your themes folder you don't need to look for a rule, you simply write a new one.
Normally the custom.css rule will overwrite a rule from another css file.
If it doesn't, you can always add the
important!
attribute.Also, be aware that elements can be members of more than one class, a general, and a specific.
<div id="Popup" class="Popup SignInPopup" style="top: 88px; left: 0px;">
If you only want to affect the sign in box, you should set a rule for the class 'SigninPopup'.
thank you very much @whu606 . it is so helpful..
