Today i finally set some time aside to fix my friends site a bit and make some visual changes.
The changes made are really cosmetic but they make in a way big differences.
For example the usage of border radius. this simple css addition changes the presentation with minimal code change.
-moz-border-radius: 10px; -webkit-border-radius: 10px;
or
-moz-border-radius: 1em; -webkit-border-radius: 1em;
also you have khtml for the Konqueror on KDE
-khtml-border-radius: 3px;
they all work mostly the same
but whats great about the radius kit is that it can be applied to anything
for example below is a little css snippet that will make your wordress calender link with curves
#wp-calendar tbody tr td a {
background-color: #566460;
padding: 4px;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
}
so go ahead and checkout the differences between the original eGamer theme by Elegant Themes
and the revamped version by me
original
revamped
*clap clap* Well done mate ;)
anyway i can get your revamped theme! it looks amazing, of course I will edit it so it’s not exaclty the same as yours.