![]() ![]() |
README
This file has been created to assist web developers in creating pages using the templates provided. These templates are designed to be used on the CEE web server (depot) but nothing prevents them from running on any web server as they are simply html files with no special scripting. It is recommended that the developer use Macromedia Dreamweaver to edit the files but is not necessary. Two templates have been created for those using Dreamweaver. They are in the templates folder and should be recognized when you setup a site in Dreamweaver. (NOTE: site creation in Dreamweaver and template use is outside the scope of this Readme file and will not be addressed here). Several files and sub-folders have been created to makeup the web templates. Here is a breakdown of the files and what they do.
The top grey menu bar (above the three images) is an optional area. This can be used as primary navigation through the website, it can be changed per page or it can be removed all-together. It was placed in the template to give the website developer the flexibility to have a horizontal navigation area if desired. The three images are placeholders. The developer can insert any number of images in this area. The height of all images should be the same. They are curently set at 153 pixels to match the CEE and campus website. The grey bar below the images is where the breadrumbing goes (breadcrumbs are what take you back to where you started ala Hansel and Gretel). I highly recommend keeping this area. If you don't want to have it go all the way back to the Institute page at least leave a link back to the CEE website. This will allow your visitors to know where they are in the site and give them a way to get back to where they were. The left vertical menu area is driven completely by the style sheet. It utilizes a <div> tag with an id of nav-menu. To insert a menu area the code would look like this: <div id="nav-menu"> To highlight the "Menu" area (as shown above in the left hand menu bar) you put a <h4> tag around the word Menu. An example would be: <h4>Menu</h4> To give you an idea of how this works here is the full code for the menu bar on the left: <div id="nav-menu"> <h4>Menu</h4> <p><a href="#">Home</a></p> <p><a href="#">Laboratory</a></p> <p><a href="#">Research</a></p> <p><a href="#">People</a></p> <p><a href="#">Publications</a></p> <p><a href="#">Workshops</a></p> <h4>Group News</h4> <p><a href="#">Item 1</a></p> <p><a href="#">Item 2</a></p> </div> This menu navigation area is completely optional. It is offered simply as another way to create navigation in the site. The right vertical menu area is another <div> tag option. This option is called floatingmenu-right. It is used in the same way as the Left Vertical menu area described above. A footer area allows for contact information. CEE footer information has been added but this can easily be modified to have content for the research area or faculty member. This area is formatted by the style sheet and uses the style footer-text |