View Single Post
  #10 (permalink)  
Old 14-06-2007, 01:34 PM
dannynosleeves's Avatar
dannynosleeves dannynosleeves is offline
currently on the run
 
Join Date: Jun 2007
Location: NC
Gender: Male
Posts: 445
Default Placing Images

I know this is wrong, but Im not sure what I should do.

I want the picture to sit in the top right hand corner of the main-contain div, slightly overlapping the shotgun shells and hanging off the right edge a little.

(scroll down to see image)

The webpage

CODE:
Code:
HTML
<body>

<div id="header"></div>
<div id="main-contain"></div>
<div id="self-portrait"></div>

</body>

CSS
#self-portrait{
	background-image:url(images/self-portrait.png);
	height:310px;
	width:450px;
	position: relative;
	top: -25px;
	left: 700px;
	}
Reply With Quote