A renewed look is on the way. Be patient if something does not work right. I’ll do my best to fix it very soon.
I’ll inform you about all the changes in the next post once I announce that the tests are over. With success I hope


A renewed look is on the way. Be patient if something does not work right. I’ll do my best to fix it very soon.
I’ll inform you about all the changes in the next post once I announce that the tests are over. With success I hope

All I ever wanted from graphic’s editing software is to have fun. To make skins, draw a website and such. I remember when I saw Dreamweaver for the first time back in 2001 or 2002, man that was a dream come true. Wow man I couldn’t believe how easy it was to produce pages without any fuss or need to dig in to, for me in that time, obscure HTML code. I think at least 2 things have changed since than. One is that Internet Explorer is no longer the king of web browsing, and the second, web itself has changed in terms of moving totally to CSS driven div layouts. Both of things are good for the end user but for people that wanted to have “fun” and maybe make some buck that meant only one thing. Learning. Constant learning.
I know some people tend to underestimate the knowledge of skinning and question its usability in other fields but I personally find the knowledge from my skinning background pretty applicable. I’ll show one example just to illustrate it.
CSS sprites, really cool way to achieve nice rollover effects, button states, look at the css code below from planetaston.com
#menu ul li a {
display: block;
float: left;
line-height: 34px;
width:100px;
height: 34px;
text-align: center;
color: #ffffff;
text-decoration:none;
background:url(‘images/butts.png’) no-repeat top left;
}
#menu ul li a:hover, #menu ul li.current_page_item a {
color:#1D1D1D;
text-align: center;
background-position: -100px 0;
}
#menu ul li a:focus, #menu ul li.current_page_item a {
color:#FFFFFF;
text-align: center;
background-position: -200px 0;
}
#menu ul li a:active, #menu ul li.current_page_item a {
color:#FFFFFF;
text-align: center;
background-position: -200px 0;
}
And the image butts.png is below