Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Alter your style sheet as follows:</p> <p>1) and 3)</p> <pre><code>.header { margin: 0; overflow: hidden; display: table; padding: 20px; background-color: #fFc; width: 100%; } .hd-banner { margin: 0; display: table-cell; background: url(logo.png) 0 0 no-repeat; } h1 { font-size:1.5em; } .login { display: table-cell; } li.l-row { display:table; } ul.full-width { width:100%; } .l-column { padding: 2px 2px; overflow: hidden; display:table-cell; } .hd-caption { top: 30%; right: 20px; } </code></pre> <p>2) </p> <pre><code>.content { clear: both; width: 100%; overflow: hidden; margin-top: 3em; display: table; } .sidebar { width: 30%; display: table-cell; padding: 20px; } .main { display: table-cell; padding: 20px; } </code></pre> <p>3) already covered in first part by</p> <pre><code>background: url(logo.png) 0 0 no-repeat; </code></pre> <p>you need to add the l-row and full width classes your your form as follows</p> <pre><code>&lt;ul class="hd-login"&gt; &lt;li class="l-row"&gt; &lt;ul class="full-width"&gt; &lt;li class="l-column"&gt; &lt;input type="text" id="email" name="email" class="state-inp-sign-in" placeholder="Email"&gt; &lt;/li&gt; &lt;li class="l-column"&gt; &lt;input type="password" id="password" name="password" class="state-inp-sign-in" placeholder="Password"&gt; &lt;/li&gt; &lt;li class="l-column"&gt; &lt;input type="submit" id="signIn" name="signIn" value="Sign in"&gt; &lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li class="l-row"&gt; &lt;ul class="full-width"&gt; &lt;li class="l-column"&gt; &lt;input name="RememberMe" type="checkbox" value="true"&gt;&lt;input name="RememberMe" type="hidden" value="false"&gt; &lt;label&gt;Remember me&lt;/label&gt; &lt;/li&gt; &lt;li class="l-column"&gt; &lt;a href=""&gt;Trouble signing in?&lt;/a&gt; &lt;/li&gt; &lt;li class="l-column"&gt; &lt;input type="submit" name="action" value="Register"&gt; &lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;/ul&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload