
March 15th, 2013, 09:57 AM
|
|
Registered User
|
|
Join Date: Mar 2013
Posts: 2
Time spent in forums: 24 m 56 sec
Reputation Power: 0
|
|
Misplaced header and missing images
Hi,
I am having a little issue with some headers being misplaced on the site I am working on and also an image that's supposed to show below each one of them is not showing. I've attached an image of the site where you can see all the images at the top which is what I want but the "To join" next to the Pinterest image shouldn't be there. It should be together with "the Deadicated...". Also, I have an image 'images/ink-line.png' that is supposed to show up below each one of the headers at the bottom and it's just not showing. I checked and yes I have the image in the right folder.
You can take a look at the website here: https://www.dropbox.com/s/2ufu5z5z9grymxi/site2.jpg
Here's part of my HTML code:
Code:
<!-- main-content -->
<div id="main-content">
<h1> Check out all our DEADicated sites: </h1>
<div class="sites">
<a href="http://www.thedeadicated.tumblr.com" target="_blank">
<img src="images/sites/tumblr.jpg" width="215" height="150" alt="Tumblr"/></a>
<p> Tumblr </p>
</div>
<div class="sites">
<a href="http://www.twitter.com/thedeadicated" target="_blank">
<img src="images/sites/twitter.jpg" width="215" height="150" alt="Twitter"/></a>
<p> Twitter </p>
</div>
<div class="sites">
<a href="http://www.youtube.com/user/DeadicatedRepository" target="_blank">
<img src="images/sites/youtube.jpg" width="215" height="150" alt="YouTube"/></a>
<p> YouTube </p>
</div>
<h2> To join TheDEADicated, click <a href="http://musichype.com/artists/dead-sara" target="_blank">HERE</a>! </h2>
<h2> To get your own DEADicated wristband, click <a href="http://store.cinderblock.com/the-deadicated-rubber-bracelet.html" target="_blank">HERE</a>! </h2>
<h2> Can't get enough of Dead Sara?! <a href="http://www.facebook.com/pages/Dead-Sara-Addiction-Treatment-facility/337823746314667?group_id=0" target="_blank">Dead Sara Addiction Treatment Facility</a> </h2>
<h2> Email us at: TheDEADicated@TheDEADicated.org </h2>
</div> <!-- close main-content -->
And my CSS for the main-content and headers:
Code:
#main-content{
padding: 50px 50px 30px 50px;
background: #fff url('images/shadow.png') repeat-x;
min-height: 800px;
}
#main-content h2{
margin-top: 30px;
padding-bottom: 8px;
background: url('images/ink-line.png') no-repeat left bottom;
clear: both;
}
I am not sure what the problem is and I am so close to being done with that page. Any kind of help would be greatly appreciated. Thanks!
|