Note that there are some explanatory texts on larger screens.

plurals
  1. POHow do I move my Header text Image down from my Header DIV and why isn't my button showing up
    primarykey
    data
    text
    <p>My header Text image "Michael Grace" I was wondering how to move it down every time i try it moves my actual header bg and and div box down too? also my "view my portfolio" link is hidden behind my header bg no idea why? sorry im new to css and html trying to do some hw someone help please!!!</p> <p>the header image is under h1 in the header div! and the image is in the header div as a link called portfolio.html</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /&gt; &lt;title&gt;{Michael Grace} Portfolio website - {Gracey design}&lt;/title&gt; &lt;link href="css/styles.css" rel="stylesheet" type="text/css" /&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="container"&gt; &lt;ul id="navigation"&gt; &lt;li&gt;&lt;a href="index.html"&gt;&lt;img src="images/images/home_button2.gif" /&gt;&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="about.html"&gt;&lt;img src="images/images/about_button1.gif" /&gt;&lt;/a&gt;&lt;/li&gt; &lt;li&gt; &lt;div id="logo" style="padding:16px"&gt; &lt;img src="images/images/logo.png" /&gt; &lt;/div&gt; &lt;/li&gt; &lt;li&gt;&lt;a href="portfolio.html"&gt;&lt;img src="images/images/gallery_button1.gif" /&gt;&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="contact.html"&gt;&lt;img src="images/images/contact_button1.gif" /&gt;&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;div id="header"&gt; &lt;h1&gt;&lt;img src="images/images/michaelgrace_03.png" /&gt;&lt;/h1&gt; &lt;h2&gt;Graphic Designer&lt;/h2&gt; &lt;p class="btn"&gt;&lt;a href="portfolio.html"&gt;View my portfolio&lt;/a&gt;&lt;/p&gt; &lt;/div&gt; &lt;div id="line"&gt; &lt;/div&gt; &lt;div id="content"&gt; &lt;h3&gt;ABOUT MICHAEL GRACE&lt;/h3&gt; &lt;p&gt;A student who is currently in there final year of study in a Diploma of Graphic design at RMIT University. I Have also completed a High school VCE qualification and I have previously studied an Adv Diploma in Multimedia Design at Swinburne University. I have the experience and aptitude for design, and I’m extremely career driven and seek to achieve most in life. I currently work at Fawkner Leisure Centre as a Lifeguard and I have previously worked at Oak park and Pascoevale Leisure centre. I have also conducted myself during studies to undertake some small Design freelance work to better understand the industry and further my knowledge. &lt;/p&gt; &lt;h3&gt;My latest work&lt;/h3&gt; &lt;p&gt;I’m forever creating design work for both myself as personal projects and as a student for University. Here’s a few of my most recent works.&lt;/p&gt; &lt;div class="portfolio-item"&gt; &lt;a href="#"&gt;&lt;img src="images/home/image1.gif" alt="View more info" /&gt;&lt;/a&gt; &lt;p class="btn"&gt;&lt;a href="#"&gt;&lt;img src="images/images/seemore1.gif" alt="View more info" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;/div&gt; &lt;div class="portfolio-item"&gt; &lt;a href="#"&gt;&lt;img src="images/home/imag2.gif" alt="View more info" /&gt;&lt;/a&gt; &lt;p class="btn"&gt;&lt;a href="#"&gt;&lt;img src="images/images/seemore1.gif"&lt;/a&gt;&lt;/p&gt; &lt;/div&gt; &lt;div class="portfolio-item"&gt; &lt;a href="#"&gt;&lt;img src="images/home/image3.gif" alt="View more info" /&gt;&lt;/a&gt; &lt;p class="btn"&gt;&lt;a href="#"&gt;&lt;img src="images/images/seemore1.gif" &lt;/a&gt;&lt;/p&gt; &lt;/div&gt; &lt;div class="portfolio-item"&gt; &lt;a href="#"&gt;&lt;img src="images/home/image4.gif" alt="View more info" /&gt;&lt;/a&gt; &lt;p class="btn"&gt;&lt;a href="#"&gt;&lt;img src="images/images/seemore1.gif" &lt;/a&gt;&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> <p></p> <p>CSS:</p> <pre><code>body { background: url(../images/images/bg_page.gif) center center; font: 16px Helvetica, Arial, Sans-Serif; color: #636363; line-height: 24px; } #container { width: 940px; margin: 0 auto; margin-top: 100px; } #header { height: 281px; background: url(../images/home/header.gif) top center; padding: 0 0 0 57px; position: relative; } #header h1 { margin: 0px 0 20px 0; } #header h2 { width: 510px; font: 30px Helvetica, Arial, Sans-Serif; color: #f2f0eb; letter-spacing: 2px; margin: 0 0 20px 0; text-shadow: 0px 3px 3px #494949; } #header p.btn a { display: block; width: 214px; height: 36px; overflow: hidden; text-indent: -9999px; background: url(images/home/viewmyportfolio1.png); } #logo { width: 272px; height: 214px; position: absolute; left: 49.5%; top: 11%; margin-left: -150px; margin-top: -86px; z-index: 2; } #navigation { position: relative; height: 60px; } #navigation li { display: inline; width: 160px; height: 60px; float: left; padding: 13px 0 0 16px; } #navigation li:nth-child(1) { margin: 0 0 0 -57px; } #navigation li:nth-child(2) { margin: 0 0 0 0; } #navigation li:nth-child(3) { margin: 0 0 0 0; } #navigation li:nth-child(4) { margin: 0 0 0 77px; } #content { height: 541px; background: url(../images/home/bg_body.png) top center; position: relative; } #line { height: 4px; background: url(../images/home/line.gif) top center; position: relative; } </code></pre>
    singulars
    1. This table or related slice is empty.
    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. 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