• Welcome to Overclockers Forums! Join us to reply in threads, receive reduced ads, and to customize your site experience!

Creating Curved Frame Corners In dreamweaver?

Overclockers is supported by our readers. When you click a link to make a purchase, we may earn a commission. Learn More.
I don't think you can do this in dremweaver. You need to make an image for each corner that has a curve, and an image for each side that you will use as a background. Then you do something like this:

Code:
<table border=0 cellspacing=0 cellpadding=0>
<tr>
<td><img src="topleftcorner.gif"></td>
<td style="background: url('topborder.gif')"> </td>
<td><img src="toprightcorner.gif"></td>
</tr>

<tr>
<td style="background: url('leftborder.gif')"> </td>
<td>Your Page Content</td>
<td style="background: url('rightborder.gif')"> </td>
</tr>

<tr>
<td><img src="bottomleftcorner.gif"></td>
<td style="background: url('bottomborder.gif')"> </td>
<td><img src="bottomrightcorner.gif"></td>
</tr>

</table>

My html and CSS may be a little off, but that's about how you do it.

This article might help:
http://www.htmlgoodies.com/tutorials/tables/article.php/3479841
 
thanks, now heres another question i would i make my whole page look like its in one page but the top be in a different frame?
 
I'd suggest not using frames. They can be a bit buggy and between browsers you can get different appearances. The best thing to do would be use tables and make a template of your page. Then you can just fill in the content. But in case you absolutely have to have frames:

Code:
<frameset rows="50,*">
<frame name="top" src="toppage.html" frameborder=0 scrolling=no noresize>
<frame name="bottom" src="bottompage.html" frameborder=0>
</frameset>
When you do this, keep in mind that the <frameset> tag replaces <body>, and any links in the top page that you want to alter the bottom need to have the target attribute.
Code:
<a href="link.html" target="bottom">Link</a>
 
in regards to the frame what is a nested frame? can i put it into a table?

well thanks your linked work perfectly but im trying to do something like www.torrentspy.com on the top bar they have the name torrentspy in blue frame and thay have the curved images on the to sides. i want to do that but i have a problem



as you can see i can shrink the column on the right and left but the column on the top (scribbled in red) i cant make any samaller then that. is there away?
 
dammit cant seem to resize the image to make it bigger. if u need a bigger version i can link it from my site.

and by the way thanks for the help so far :) :)

edit: maybe i should just make that whole top bar in photoshop but can i link parts of the image (the words in the image)?
 
Torrentspy doesn't use frames for their website. They use tables and I suggest you do that too. I can't really see what you're talking about in the picture. It's too small. Can you make a bigger one?
 
well i am copletly noob at html,so basically to put one of these on my site i should find the code for the table i want it in and paste the code in that table?
 
Back