Please note: We
have no control over the sites listed below.
Any reliance you place on the information
or downloaded materials is at your own risk.
Main Menus
- Project
Seven - CSS Express Drop-down Menus
- Free tutorial and assets Working Example
- Vertical
Menu Rollover Effects - stylesheet,
CSS - tutorial
- note: you'll need to add the 2 link styles below to the stylesheet to fix a bug in Internet Explorer.
- div.menu a:visited:active {your link style here;}
- div.menu a:visited:hover {your link style here;}
- Main Menu displaying under jQuery element - Set a higher z-index on the menu. Setting a negitive z-index on the jQuery emement didn't work in Firefox 12.
Stylesheet
- Change
the stylesheet according to time of day
- based on user's browser time; www.raging64.com
is a working example (day, twilight, night
stylesheet) - tutorial
General
Bug Fixes
- Carriage
Returns or Spaces in HTML Code - can cause extra spacing
problems in Internet Explorer; takes priority
over css settings; effects popular tags
- keeping the tags inline with the content
(especially the ending tag) and not using
any spaces or carriage returns fixes the
problem
Correct:
<td><img src="image.jpg"></td>
or
<td>
<img src="image.jpg"></td>
Incorrect (causes 3px
gap at bottom of image):
<td>
<img src="image.jpg">
</td>
or
<td><img src="image.jpg"> </td>
|
|
|