Regarding the usage of jquery tabSlideOut plugin -
i using jquery tabslideout plugin our site , working fine. here url u can see working fine
http://www.bba-reman.com/ http://www.bba-reman.com/content.aspx?content=how_to_contact_bba_reman_it
but when u go page http://www.bba-reman.com/catalogue/register.aspx u notice ui clutter. here screen shot
so please see page , tell me made mistake causes problem. please guide me need modify. thanks
in registration page, input fields longer in rest of site. according element inspector there's line of css in register.aspx: input[type=text], input[type=password] {width: 300px;}
. rule general , affects input fields on page, both ones in registration form , ones in slide out tab.
options are:
- remove rule. tab ok, input fields in registration form not aligned.
- use more specific css rule affect input fields in registration form:
#register input[type=text] {width: 300px;}
as side note, i'd suggest avoiding inline , in-file css, makes messy.
Comments
Post a Comment