Archive for March, 2006
Ajax file uploaders
Saturday, March 18th, 2006
I’ve recently bidded to work on some AJAX upload plugin on RAC, for 75$.
First I tought to make a PHP AJAX upload for myself with one friend, and than I discovered dosen of PHP upload scripts on the net, and decided to download and test them, to use them as starting point.
In the beginning everything […]
Css links underline etc problem in IE
Tuesday, March 14th, 2006There is a problem with IE not inheriting styles for links if thay are not defined like this:
#something a {
text-decoration:none;
}
#something a:hover {
text-decoration:underline;
}
there is also visiter order:
example:
a:link {
color: #0000CC;
font-family: Verdana;
font-size: 14px;
font-weight: bold;
}
a:hover {
color: #E80000;
font-family: verdana;
font-size: 14px;
font-weight: bold;
font-style: normal;
line-height: normal;
font-variant: normal;
text-transform: none;
border: thin none #FFFFFF;
text-decoration: underline;
}
a:visited {
color: #0000CC;
font-family: verdana;
font-size: 14px;
font-weight: bold;
font-style: normal;
}
a:active {
color: #0000CC;
font-family: verdana;
font-size: 14px;
font-weight: bold;
font-style: […]
