Width And Size

iBoe

Member
Mar 31, 2012
57
4
For some reason i've tried to width and size it and alot of problems occured...
Duplications of it going under and all sorts can someone help?

SwJ7qkO.png
 

iBoe

Member
Mar 31, 2012
57
4
Code:
                    <div id="login-form">
                        <div id="login-form-email">
                        <div class="input user">
                            <input type="text" class="login-field" name="log_username" placeholder="Username">
                        </div>
                        <div id="login-form-password">
                        <div class="input pass">
                            <input type="password" class="login-field" name="log_password" placeholder="Password"/>
                        </div>
                        </div>
                        <div id="login-form-submit">
                            <input type="submit" value="Login" name="login">
                        </div>
                    </div>
                    </div>
 

Mega

Posting Freak
Mar 23, 2013
858
155
What actually do u want? The input same size as the white bg (1) or the opposite (2)?
If u don't know where the css file is, just add the following:
(1)
HTML:
<div class="input user"> to <div class="input user" style="width:215px; height:43px;">
<div class="input pass"> to  <div class="input pass" style="width:215px; height:43px;">
(2)
HTML:
<div id="login-form-email"> to <div id="login-form-email" style="width:250px; height:43px;">
<div id="login-form-password"> to <div id="login-form-password" style="width:250px; height:43px;">
Hope this helped.
Regards,
Mega (Harith)
 

Users who are viewing this thread

Top