21
Symbolic link not allowed or link target not accessible
To fix, create or edit an .htaccess file in the same folder as the symlink. Insert the following line:
Options +FollowSymLinks -SymLinksIfOwnerMatch
12
HTML Entities in Unicode Format
See here for an extensive list of HTML entities in escaped unicode format – great for inserting content using the :before CSS pseudo class selector.
http://www.evotech.net/blog/2007/04/named-html-entities-in-numeric-order/
15
Selecting elements with multiple classes
Came across a problem today that meant I needed to select all elements that had two particular classes.
I needed to apply my styles to any element with class=”className className2″. This is easily done by using:
className.className2{ styles }
Fortunately this was for an intranet project, as IE6 and lower do not support selecting like this. I believe they will only read the last part and apply the styles to className2.
Tweet10
Ordered list items all start with a 1
Another odd one from IE 6 and 7.
Today I was having trouble with and ol (ordered list). First of all there were no numbers so I removed the float and they appeared. What did appear, however, was the number 1 repeated over and over. Every single li (list item) started with the number one.
After playing with it for at least half an hour I found that by removing the width I had set on the li they started to increment again. I did a bit of searching and came across the bug listed on Quirks Mode. Apparently, the same thing happens if you set a height.
Tweet

