Looking for code on how to change border styles... (maybe some other help as well)
-
On my site (see sig) I want to change the border of this inline frame I have on my website to something with rounded corners and do something with the scroll bar. I also want to change my navigation bar from the top under the banner to the side, so I would like some pointers on how to get that done and would fit for most resolutions (using whatever code). So if someone could maybe point me ni the right direction towards a web tutorial or whatever, it would be greatly appreciated. Thanks in advanced.
Who am I? Currently: A Programming Student trying to survive school with plan to go on to Univeristy of Advancing Technology to study game design. Main career interest include: Multimedia and game programming. Working on an outside project: A game for the GamePark32 (GP32) portable gaming console. My website: www.GP32US.com
-
On my site (see sig) I want to change the border of this inline frame I have on my website to something with rounded corners and do something with the scroll bar. I also want to change my navigation bar from the top under the banner to the side, so I would like some pointers on how to get that done and would fit for most resolutions (using whatever code). So if someone could maybe point me ni the right direction towards a web tutorial or whatever, it would be greatly appreciated. Thanks in advanced.
Who am I? Currently: A Programming Student trying to survive school with plan to go on to Univeristy of Advancing Technology to study game design. Main career interest include: Multimedia and game programming. Working on an outside project: A game for the GamePark32 (GP32) portable gaming console. My website: www.GP32US.com
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 thediv
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)