Ok, I am making good progress but now I have these problems:
1) css3 border-radius does not work on IE. I tried a .js file called 'DD_roundies' but the background image is not displayed on IE8
2) In the sticky note I am rotating the text so it matches the sticky rotation (just like 7 degrees) but I cant make it work on IE even though the code Im using it is supposed to work on IE:
Code:
-moz-transform: rotate(-7deg); /* FF3.5+ */
-o-transform: rotate(-7deg); /* Opera 10.5 */
-webkit-transform: rotate(-7deg); /* Saf3.1+, Chrome */
-ms-transform: rotate(-7deg); /* IE9 */
transform: rotate(-7deg);
filter: progid:DXImageTransform.Microsoft.Matrix(/* IE6–IE9 */
M11=0.992546151641322, M12=0.12186934340514748, M21=-0.12186934340514748, M22=0.992546151641322, sizingMethod='auto expand');
any clues?
Bookmarks