Sorry about the larger images, didn't want to redo site, didn't have much time, each image is about 250k, again sry. If you think another color scheme would look good, take the image edit it, post a reply and you can send the image to theuedimaster@yahoo.com
Also, I would check out the article on list navigation that i posted in my last comment. Give the tool and try and see how rewarding the results can be.
I don't understand, at the end I get html code and css code, where do I put the css? I have no idea, haven't learned css yet. I am just using dreamweaver right now, I will learn css soon, but I have no idea where to put this css. In a whole new html file? In the header? Before the header? Thanks!
Or, you can put it in file and call it something like styles.css. In the file however, do not include any tags! The only thing in the file should be the raw CSS! Then, when you do that, you can import it using one of these methods (put this code somewhere between <head> and </head>):
or this method, which would allow you to control which browsers support your import method (see here for more info):
Code:
<style type="text/css">
@import "styles.css"; /* change red text tto whatever you want, based on what browsers you want to import the stylesheet (info in the link above) */
</style>
Bookmarks