Hi Paul,
CSS is, in my opinion, the best way to present a menu on a webpage both in terms of a contextual layout and for aiming for accessibility standards, page speed and scalability. (my tuppence worth)
Menus are ultimately an unordered list <UL>, with list items <LI>'s.
A resource you might want to look at for some list/menu design styles in CSS is
http://css.maxdesign.com.au/
(there are many more)
You may find something there you can use and the tutorials may just be the first step in opening your understanding of managing menus and layouts in CSS. They are well structured and show a step by step CSS guide for each menu CSS change.
As well as the benefit in accesibility,scalability and ease of coding the CSS styled menus save bandwidth, increase page load speed over massive javascript/image based menus AND allows far more scalability when it comes to updating your site and layout.
PLEASE NOTE:
Some of the examples on this resource may not work across all browsers so it would be best to test any that you choose to replicate.
CSS is, in my opinion, the best way to present a menu on a webpage both in terms of a contextual layout and for aiming for accessibility standards, page speed and scalability. (my tuppence worth)
Menus are ultimately an unordered list <UL>, with list items <LI>'s.
A resource you might want to look at for some list/menu design styles in CSS is
http://css.maxdesign.com.au/
(there are many more)
You may find something there you can use and the tutorials may just be the first step in opening your understanding of managing menus and layouts in CSS. They are well structured and show a step by step CSS guide for each menu CSS change.
As well as the benefit in accesibility,scalability and ease of coding the CSS styled menus save bandwidth, increase page load speed over massive javascript/image based menus AND allows far more scalability when it comes to updating your site and layout.
PLEASE NOTE:
Some of the examples on this resource may not work across all browsers so it would be best to test any that you choose to replicate.
Comment