![]()
This is my blogchalk:
United States, California, San Francisco, Cow Hollow, English, Alison, Female, 31-35.
| Saturday, September 21, 2002 | |
A Trick:
Drop a #navigatorLinks file into a category folder. Edit the file (remove links not relevant to said category). Post an item to that category. Check out its home page. Look any different?
Variations:
The bonus of using #navigatorLinks is that the category can continue to use the MainTemplate from the www folder (#template.txt). The latest tweaks to the look and feel will be reflected consistently accross your site.
20% of the techniques do 80% of the work. XSLT must be one of them.
Resources:
(All Links via [Zeldman])
"No Time Management theory should be without balance, and the Pickle Jar theory is all about balance."
So true.
"Now, grab your jar again. Empty it.
Fill your jar with water until it is completely full. Now, try and add some sand. What do you mean it didn’t work?"
Original article by Jeremy Wright (via A List Apart) .
The sample code given in the original post HTML 1-A Lesson: Anchors was incorrect.
The pound signs # should be used in the links to the anchors instead of the anchors themselves:
Before, Incorrect: Link to the anchor: <A href=enablingCategories>How do we enable categories?<A>The Anchor: <A name=#enablingCategories>How do we enable Categories?<A>
After, Correct: Link to the anchor:
<A href=enablingCategories>How do we enable categories?<A>
<A href="#enablingCategories">How do we enable categories?<A>The Anchor:
<A name=#enablingCategories>How do we enable Categories?<A>
<A name="enablingCategories">How do we enable Categories?<A>