PDA

View Full Version : A Question About Html =)



HandyMan
July 7th, 2007, 03:41 PM
Hello! I am making a website which will be used by the visitors to search for jobs. I have a friend who is making the programming, and I have the design ready to make. Now the only question is. How should I implement my design in a html site. I have used dreamweaver before to customize and pubblish my flash sites and making small changes. The design is http://www.da-media.net/jobb3/ . So what would be the best way to do this in html? any special techniques? Any good tutorials?

Thanks alot in advance!!

brianmanden
July 7th, 2007, 03:53 PM
http://webdesignskolan.com/ ?

HandyMan
July 8th, 2007, 12:26 PM
THanks alot! Helped me with pretty much everything!


Now there is only one question left. How do I shadow Iframes? is it possible?

Best regards!

brianmanden
July 21st, 2007, 09:11 AM
yeah ... you could use some code like this:



<html>
<head>
<title>iframe shadow test</title>
</head>
<style>

body {
background-color:#CCCCCC;
}

.center{
text-align:center;
}
.shadow {
width:500px;
height:430px;
background-color:#333333;
}

.iframe {
position:relative;
top:-7px;
left:4px;
width:500px;
height:430px;
}

</style>
<body>
<div class="center">
<div class="shadow">
<iframe class="iframe" src="http://www.google.com"></iframe>
</div>
</div>
</body>
</html>


.. or just place a picture with shadow (made in PhotoShop or what ever) behind the iframe.

For more on CSS

http://www.mycelly.com/

and

http://www.thenoodleincident.com/tutorials/box_lesson/boxes.html

may be of some help!

Good luck and let us see what you come up with !