Monthly Archive for August, 2008

10:58:43 am

Many advanced web designers know of this trick, but there doesn’t seem to be any documentation about it anywhere. It is a simple css trick to allow a user viewing a table with no cell borders to see what all lies in a row.

The trick is to make it so when a user hovers over a cell, the entire row changes some fundamental manner (background color, font size, font color, etc) to show that those cells are connected. While you could do this with Javascript, a better alternative is to use CSS[1. Using CSS when avalible to do what is usually done with Javascript is ALWAYS better, as it is faster and usually easier to debug]. When you have a well defined table, add this to the table’s css:

1
2
3
tr:hover td {
background: blue;
}

You don’t have to use a background to do the changing, you can use any entry you want there, i just used background for an example.
This will make it so when a user hovers over a row, all the cells in that row change their background colors.

This makes it easy for a user to identify elements, while still keeping tables stylish. If you have headers, you can do a similar trick, but you want to use a different hover color. To do that, replace the td portion with th

Comments 226 views
9:01:28 pm

Android, also known as the Google Phone, will be coming out sometime soon, Google is showing off signs right and left, and over this past week, they have released a whole pile of data about it. This includes some 3rd party apps that will be available out of the box, and do some pretty impressive things. Some of these things could change the entire way we use our Cell Phones, and even change how we act and behave.
Continue reading ‘How Android could change our whole world’

Comments 244 views
9:16:24 pm

Facebook is great. It lets you share things with your friends, and does a good job by doing so. One problem is that many people have fairly boring profile pages. Usually they have one or 2 annoying apps, and nothing that is actually useful. There is a way you can integrate the various services you have an account on into your facebook, to make your page truly say who you are.
Continue reading ‘Integrating facebook and other services’

Comments 254 views
7:11:35 pm

This is a bit late, as the game has been out for a while, but those of you who still are interested, or those who haven’t bought it. It has proven to be a most interesting game. While the fundamental gameplay is quite similar to that of the previous game, the mechanics are completely different.
Continue reading ‘Geometry Wars 2 Reivew’

Comments 958 views
12:01:26 pm

Sorry to all you who read regularly, I havn’t updated in over a month, as i have been on vacation. Normal posting should return

In other news, you may notice the forums have dissapeared. This is because i got tired of spam accounts registering. Those of you who had old accounts can still use them on the site. I may relaunch the forums again with something else, but that is far in the future.

In the mean time, i have been playing a number of games, including Mass Effect, Geometry wars, and a few others. Reviews pending.

Comments 195 views