The glitching Navbar seems to have been caused by both the NAV and Banner filter delegations I think. I simply took those off and added static positions to the elements that were glitching and it works beautifully now when scrolling.
Just finished the project. I think I did everything correct? The spec sheet looks like the box was center and thinner than the browser, but the example in the prject was full width. So I kept it full width.
Would ove some feedback. Thanks!
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./css/index.css">
<title>Dasmoto's Arts & Crafts</title>
</head>
<body>
<header>
<h1>Dasmoto's Arts & Crafts</h1>
</header>
<main>
<section>
<article>
<h2 id="brushes">Brushes</h2>
<img src="./Assets/hacksaw.jpeg" >
<h3>Hacksaw Brushes</h3>
<p>Made of the highest quality oak, Hacksaw brushes are known for their weight and ability to hold paint in large amounts. Available in different sizes. <span class="price">Starting at $3.00 / brush.</span></p>
</article>
<article>
<h2 id="frames">Frames</h2>
<img src="./Assets/frames.jpeg" >
<h3>Art Frames (assorted)</h3>
<p>Assorted frames made of different material, including MDF, birchwood, and PDE. Select frames can be sanded and painted according to your needs. <span class="price">Starting at $2.00 / frame.</span></p>
</article>
<article>
<h2 id="paint">Paint</h2>
<img src="./Assets/finnish.jpeg" >
<h3>Clean Finnish Paint</h3>
<p>Imported paint from Finland. Over 256 colors available in-store, varying in quantity (1 oz. to 8 oz.). Clean Finnish paint microbinds to canvas, increasing the finish and longevity of any artwork. <span class="price">Starting at $5.00 / tube.</span></p>
</article>
</section>
</main>
</body>
</html>
header {
background-image: url(../Assets/pattern.jpeg);
}
h1 {
font-family: Helvetica, sans-serrif;
font-size: 100px;
font-weight: bold;
color: khaki;
text-align: center;
}
h2 {
font-family: Helvetica, sans-serrif;
font-size: 32px;
font-weight: bold;
color: white;
}
h3 {
font-family: Helvetica, sans-serrif;
}
p {
font-family: Helvetica, sans-serrif;
}
span.price {
font-family: Helvetica, sans-serif;
font-weight: bold;
color: blue;
}
h2#brushes {
background-color: mediumspringgreen;
}
h2#frames {
background-color: lightcoral;
}
h2#paint {
background-color: skyblue;
}