Home arrow Style Sheets arrow Page 3 - Improving the Visual Presentation of a CSS Drop-Down Menu
STYLE SHEETS

Improving the Visual Presentation of a CSS Drop-Down Menu


Welcome to the final installment of the series “Building clean drop-down menus with CSS.” This series shows you how to build an extensible drop-down menu which you can easily include in the existing structure of your own web site. In this part, we'll work on the menu we've created to make it more visually appealing.

Author Info:
By: Alejandro Gervasio
Rating: 4 stars4 stars4 stars4 stars4 stars / 5
October 29, 2008
TABLE OF CONTENTS:
  1. · Improving the Visual Presentation of a CSS Drop-Down Menu
  2. · A review: the menu’s complete source code
  3. · Improving the look and feel with additional CSS styles
  4. · Setting up a working example

print this article
SEARCH DEVARTICLES

TOOLS YOU CAN USE

advertisement
Improving the Visual Presentation of a CSS Drop-Down Menu - Improving the look and feel with additional CSS styles
(Page 3 of 4 )

Over the course of the previous section, I pointed out that this drop-down menu needs a better visual presentation, since in its current incarnation it is rather primitive. Therefore, I will introduce some basic changes to the menu's original CSS styles to make it look more appealing and potentially, more professional.

Of course, the modifications that I’m about to introduce to the menu’s CSS styles are mere examples, and consequently, they should be taken as such. If you want to give the menu another visual appearance, the process is only limited to defining the styles that best suit your personal needs.

Given that, please examine the following list of CSS declarations, which are aimed at improving the look and feel of this menu:


/* reset body styles */

body{

padding: 0;

margin: 0;

background: #fff;

}

/* style unordered list */

ul{

padding: 0;

margin: 0;

list-style: none;

}

/* style menu items */

li.topitem{

float: left;

position: relative;

width: 15em;

padding: 5px;

background: #fc0;

font: bold 11px Tahoma, Arial, Helvetica, sans-serif;

color: #000;

}

/* position and hide drop-down menu */

li.topitem ul{

display: none;

position: absolute;

top: 22px;

left: 0;

background: #ffc;

padding: 5px;

}

li > ul{

top: auto;

left: auto;

}

/* display drop-down menu (add an 'over' class attribute to list items for IE */

li:hover ul,li.over ul{

display: block;

}

#navbar li li a {

font: normal 11px Verdana, Arial, Helvetica, sans-serif;

color: #000;

padding: 5px;

text-decoration: none;

}

#navbar li li a:hover {

color: #00f;

}


As you can see, the CSS styles shown above demonstrate how easy it is to provide this drop-down menu with a slightly better visual presentation. Basically, all I did was assign a basic background color to each top-level element of the menu, and add some styling its corresponding items.

Of course, if you’re anything like me, you want to see for yourself how this improved version of the menu looks. Below I included some screen shots that show clearly the menu’s new visual appearance:





Hopefully, the three previous images should give you a good idea of how simple it is to change the visual presentation of this drop-down menu by introducing only basic changes to the corresponding CSS styles. The main advantage of working with this kind of web-based user interface rests on its clean and robust (X)HTML structure.

Now that you have learned how to improve the look and feel of this menu to make it appear slightly more attractive to potential users, it’s time to see its full source code, this time including the modifications that you saw previously.

As you might guess, this task will be performed in the next section, so click on the link below and keep reading.


blog comments powered by Disqus
STYLE SHEETS ARTICLES

- CSS Combinators: Working with Child Combinat...
- CSS Combinators: Using General Siblings
- Intro to CSS Combinators
- CSS Semicircles and Web Page Headers
- Drawing Circular Shapes with CSS3 and Border...
- More CSS Pagination Link Templates
- CSS Pagination Links
- Animated CSS3 Image Gallery: Advanced Transi...
- CSS3 Animated Image Gallery: Transitions
- CSS3 Properties: Fixed Heights with box-sizi...
- CSS3 Properties: Altering Strokes and 3D Eff...
- CSS3 Properties: Text-Stroke
- CSS3 Transitions: Width and Height Properties
- Creating a Drop Down Menu in CSS3
- Intro to CSS Transitions

Dev Articles Forums 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Weekly Newsletter
 
Developer Updates  
Free Website Content 
Contact Us 
Site Map 
Privacy Policy 
Support 



© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 11 - Follow our Sitemap
Popular Web Development Topics
All Web Development Tutorials