Sun, 2012-10-07 23:44
Hi guys, I have a custom logo that I have created that I would like to add to the header of my site. I am currently using an image for my header, so I just need to add the logo to a fixed position on it.
Thanks
Mon, 2012-10-08 01:06
#1
Mon, 2012-10-08 04:01
#2
Without seeing the markup you
Without seeing the markup you have already, it could be something like:
<div id="header"> <img src="header_img.png" /> <img src="logo.png" id="logo" /> </div>
#header{ position:relative; } #logo{ position: absolute; top:10px; left:100px; }