Forum: Absolute Beginners
01-02-2009, 09:46 PM
|
|
Replies: 9
Views: 843
the conditionals only work for IE (I can't find...
the conditionals only work for IE (I can't find anywhere that would suggest different). The way I work this out is to develop for FF/Safari/Opera. Then make it work in IE. Those three seem to work...
|
Forum: Absolute Beginners
01-02-2009, 12:41 PM
|
|
Replies: 9
Views: 843
|
Forum: Advanced PHP Programming
11-17-2008, 01:29 PM
|
|
Replies: 6
Views: 1,697
could just do a mod...
could just do a mod oppr:
for($i=0;mysql_num_rows($rsSomthing)>$i;$i++){
$color = "#ededed";
if($i%2){
$color = "#ccc";
}
$i++;
echo "<div...
|
Forum: XHTML, HTML, CSS
08-14-2008, 03:43 AM
|
|
Replies: 4
Views: 1,165
Css
Hi there,
The short hand for the background like this:
body{
background: #ccc url(/img/pic.png) top left no-repeat;
}
the 100% is for the
bakground-position: 100%
|