Anouncements !!!
Tuesday, 22. September 2009, 21:01:51
Am using fedora 11 !
For all who care to note,which would you prefe 3DsMax or Blender?
Total: 4 votes
| M | T | W | T | F | S | S |
|---|---|---|---|---|---|---|
|
| ||||||
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 | ||||||
This book is awesome for those short on knwing maths used for games it is for and only for game devlopers,it generals itself over all parts 4m the basic maths vectors,matrices,etc down to physics,game engines,computer graphics concept.If u interested
Amnith # 10. September 2009, 18:13
Trinox3 # 10. September 2009, 19:46
Amnith # 10. September 2009, 21:13
Personally, I'm quite fond of Gentoo's emerge or it's C "port" paludis which is faster. Though... You'd have to compile everything from scratch, but it'll make the software run better on your computer. Big stuff such as X, GNOME, KDE and other window managers might get a speed boost, but...
Trinox3 # 10. September 2009, 21:31
Trinox3 # 10. September 2009, 21:31
Amnith # 11. September 2009, 10:03
Originally posted by Trinox3:
What?
Trinox3 # 11. September 2009, 14:01
Trinox3 # 12. September 2009, 00:04
Amnith # 12. September 2009, 08:00
Have a nice weekend!
Trinox3 # 12. September 2009, 10:18
Originally posted by amnith:
lol.....thanks....sorry for my bad blog ethics...lol
Trinox3 # 12. September 2009, 10:19
Amnith # 12. September 2009, 10:35
Although, shifting all links to the right can be a bit disturbing when trying to select a smiley (just noticed)
Trinox3 # 12. September 2009, 10:49
Amnith # 12. September 2009, 12:53
#smilies a:hover { padding-left: 0px !important; }Should do the trick
Trinox3 # 12. September 2009, 17:59
Amnith # 12. September 2009, 18:42
- If you have any underlying elements that matches, it will override them.
- It overrides any current style to the element.
Say that you have the structure:
div
ul
li
a
/li
/ul
/div
if you write:
div a { color: red; } it won't work, as there's no directly underlying a to the div. However, div ul li a will. You can however force the div a to work, by putting: div a { color: red !important; }.
If you have the following CSS structure:
div ul li a {
color: blue;
}
div a {
color: red;
}
The a will be blue, but if you have
div ul li a {
color: blue;
}
div a {
color: red !important;
}
it will be red.
It's also worth noting that if you have:
div a {
color: red !important;
}
div ul li a {
color: blue;
}
The result will still be red, as !important overrides any lesser colors, even though they are written after.
I hope this was of any clarification to you. Cheers!
Trinox3 # 12. September 2009, 18:51