nssone wrote: I want to change the border of this inline frame I have on my website to something with rounded corners This is pretty simple to do with a table, actually. Create a table in a 3x3 grid, put the corner images of the border in the corners of the grid, then set the background image of the edge cells to be the edge images of your border (to be expandable, the edge images will need to be repeatable). nssone wrote: I also want to change my navigation bar from the top under the banner to the side One method is to just have a big table with the navbar in the left cell and the content in the right cell. A more browser-friendly method (that doesn't abuse tables and renders incrementally) is to have the navbar be a floating div -- since you know the size of the banner image and the size of the navbar elements, you know the absolute pixel position of the upper-left corner of the div and the height and width. You can then set the left margin of the content to be as wide as the navbar. That's just off the top of my head, so you may find some methods which are more comfortable. There are lots of web communities to get basic layout and design tips; you may want to check out http://www.evolt.org/[^] for some good articles and tutorials. - Mike (zoogie.lugatgt.org)