Note that there are some explanatory texts on larger screens.

plurals
  1. POThe Content section goes over top the header
    primarykey
    data
    text
    <p>I want to make something similar to this <a href="http://www.thomaspomarelle.com/" rel="nofollow">http://www.thomaspomarelle.com/</a> (custom design of course), but the problem I am encountering is that my about section which is supposed to be below the background picture and accessed by scrolling the page, goes on top of the header :( And I absolutely can't figure out why. I was thinking that is because I have the image in the body, but I tried putting the image in the div's after the header section, and it doesn't work at all. Here's my code:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;yudasinal&lt;/title&gt; &lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&gt; &lt;!-- Bootstrap --&gt; &lt;link href="bootstrap/css/bootstrap.css" rel="stylesheet" media="screen"&gt; &lt;link rel="stylesheet" type="text/css" href="custom.css"&gt; &lt;/head&gt; &lt;body id="backimage"&gt; &lt;nav class="navbar-wrapper navbar-default navbar-fixed-top" role="navigation"&gt; &lt;div class="container"&gt; &lt;div class="navbar-header"&gt; &lt;a class="navbar-brand" href="#"&gt;LOGO&lt;/a&gt; &lt;/div&gt; &lt;div id = "projects"&gt; &lt;ul&gt; &lt;li class = "line"&gt; &lt;a href = "#"&gt;HOME&lt;/a&gt; &lt;/li&gt; &lt;li class = "line"&gt; &lt;a href = "#"&gt;HOME&lt;/a&gt; &lt;/li&gt; &lt;li class = "line"&gt; &lt;a href = "#"&gt;HOME&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt; &lt;/nav&gt; &lt;script src="//code.jquery.com/jquery.js"&gt;&lt;/script&gt; &lt;script src="js/bootstrap.min.js"&gt;&lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>and here's the css for it: </p> <pre><code>#projects ul { text-align: right; margin-right: 10px; padding: 15px 15px; font-size: 18px; line-height: 60px; } #projects li { display: inline-block; height: 40px; position: relative; overflow: hidden; background-position: top center; } #projects ul li.line a { padding: 0 30px 30px; text-align: center; } #projects li.line a::after { position: absolute; top: 87%; left: 0; width: 100%; height: 3px; background: black; content: ''; opacity: 0; -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s; -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s; transition: height 0.3s, opacity 0.3s, transform 0.3s; -webkit-transform: translateY(-10px); -moz-transform: translateY(-10px); transform: translateY(-10px); } #projects li.line a:hover::after, #projects li.line a:focus::after { height: 5px; opacity: 1; -webkit-transform: translateY(0px); -moz-transform: translateY(0px); transform: translateY(0px); } #backimage { background-image: url(http://cs425729.vk.me/v425729136/4e67/6abwVXLTK9s.jpg); background-repeat: no-repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; width: 100%; height: auto; } .wrapper { width: 1000px; margin: auto; clear: both; z-index: 10; } </code></pre> <p>it also has twitter bootstrap css. </p> <p>Thanks a lot for help in advance!!!</p>
    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.
 

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