12-08-2007, 10:11 PM
|
#6 (permalink)
|
|
The Prestige
Join Date: Sep 2007
Location: Sweden, Stockholm
Posts: 1,080
Thanks: 115
|
That's awesome :| :O
A big thanks to you! I will study the code carefully :D
One thing though that got my attention.. I'm trying to slice my own pictures.. so I get full quality.. but the header turns out to be a real pain in the ass to get working >.<
Because the left and the right sides of the header(and the footer), is rounded... so I'm using another image there.
For the footer I've just used:
HTML Code:
div.footer {
background: url(footer.jpg) repeat-x top left;
height: 15px;
margin: auto;
}
<div class="footer">
<img src="footer-left.jpg" style="float: left;" />
<img src="footer-right.jpg" style="float: right;" />
</div>
But that doesn't work for the header =//
See SS
|
|
|
|