I'm working on one site and I need frame like on http://www.thearchitecturestudio.net/. How to put my logo(picture) like this ,overlap border ?
The legend tag needs a fieldset tag, and the fieldset tag is for forms. So the real correct answer to this question is: Learn HTML and CSS and you will find thousand ways to do that.
Thomasz
2010-10-21 12:39:29
A:
You can also think about using CSS position
(absolute, relative).
bazmegakapa
2010-10-21 11:39:46
+1
A:
Ok, for example:
HTML:
<div class="logo">
<img src="logo.jpg">
</div>
<div class="box">
<p>some text</p>
</div>
CSS:
.logo {position:absolute;border:5px solid #fff;top:0;left:10px;}
.box {border:1px solid #000;width:500px;height:400px;}
Olexandr Skrypnyk
2010-10-21 12:25:11