Hey guys, I just created a horizontal navigation bar online with dropdown menu's. The program gave me a code - Looks like half CSS and half html...I'm not quite sure what to do with it My site has CSS support files - I'm just confused. It gave me the download in a zip file. I unzipped it and I have the code in a html file and also the images for the dropdown menu in a different folder. Any idea's how to install this? Thanks again. Best regards Altug
Well, insert the html where you want it on your page, put the css into your stylesheet, or on your page inside style tags. Upload the images wherever you want them, and make sure that all the image paths in the code (html and css) lead to the images you uploaded. Often sites that offer those generators have usage instructions too.
Thanks, I did try inserting the whole lot on the page but the dropdown wasn't operating...(I guess because I hadn't uploaded images, duh to me!) Which style sheet would I put the css code into? I have 3 - I have one for navigation, I'd assume I put it in there? Thanks for your reply
You need to upload the CSS and load it to your HTML file Something like this <link rel="stylesheet" type="text/css" href="PATH_TO_YOUR_CSS_FILE/NAME_OF_YOUR_CSS_FILE.css" /> so if you have the CSS in 'css' folder and css file is style.css <link rel="stylesheet" type="text/css" href="css/style.css" /> Also upload all the images need. Please remember that directory structure is important and case-sensitive.