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 negative z-index on the jQuery element may not work in some browsers.
- Menu Test - new menu test, delete
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
- Random Background Image Swap - code generator
- Sample Internet Policies - articles from Gov.UK
- Quick Gallery - Kaosweaver - Dreamweaver plugin
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>
|
|
|