Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Tried to clean it up a bit: </p> <p>HTML:</p> <pre><code>&lt;div class = "header"&gt; &lt;ul class = "nav"&gt; &lt;li&gt;&lt;a href = "#"&gt;PORTFOLIO&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href = "cv.html"&gt;CV&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href = "contact.html"&gt;CONTACT&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; </code></pre> <p>CSS - Body and NAV:</p> <pre><code>body{ margin: 0; padding: 0; } .container { width: 100%; margin: 0 auto; position: relative; padding: 0; top: 10%; text-align: center; } /* nav style */ .header{ margin: 0 auto; position: fixed; width: 100%; padding: 0; } .nav { margin: 0 auto; width: 100%; padding: 0; } .nav ul { list-style: none; margin: 0 auto; padding: 0; width: 100%; } .nav li { border-bottom: 1px solid #ccc; padding: 15px 25px 10px 25px; font-size: 12px; list-style: none; display: inline-block; text-align: center; } .nav a { text-decoration: none; color: #C7C7C7; } .nav li a:hover { color: #A6A6A6; } /* end nav style */ </code></pre> <p>CSS - Wrapper (Didn't edit the individual picture frames etc)</p> <pre><code>#wrapper { background: white; color: black; width: 100%; margin: 0 auto; display: inline-block; text-align: center; } .left, .middle, .right { /*Why not just 1 class*/ width: 31%; margin: 0 auto; padding: 10px; display: inline-block; text-align: center; } </code></pre> <p>CSS - Footer</p> <pre><code>/* footer style */ #footer { margin: 0 auto; position: fixed; width: 100%; padding: 0; bottom: 0; clear: both; } #footer p { padding: 5px; /*suggestion, since the copyright text changed from the original*/ text-align: center; color: #C7C7C7; font-size: 8px; } #footer .nav li a { color: #333333; } #footer .nav li a:hover { color: #A6A6A6; } </code></pre>
    singulars
    1. This table or related slice is empty.
    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. VO
      singulars
      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