Need some pointers

jaylimix

New Member
My site has a login button. When it is click, you can see that it moves the navigational button.

Need some pointers on why this happen and how I can solve this. Thanks all.
 

keens

New Member
The fieldset is forcing the navigation to move to the left because it does not have enough space left.

Try to put the following code inside #navigation and #fieldset.

#navigation {
position:absolute;
width:100%;
}

#fieldset {
z-index:99;
}

You can then adjust the css from there, or try to find a different method.
 

jaylimix

New Member
The fieldset is forcing the navigation to move to the left because it does not have enough space left.

Try to put the following code inside #navigation and #fieldset.

#navigation {
position:absolute;
width:100%;
}

#fieldset {
z-index:99;
}

You can then adjust the css from there, or try to find a different method.

Thanks for the tip.
 
Top