Mar 10

Lebron and the Cavs will struggle

How will cleveland do in the playoffs? They are on top in the eastern conference but still they struggle in winning big games like Lakers and Boston. Does Lebron get intimidated with Kobe? In his last two meetings with the Lakers, Lebron James struggles carrying his team in to a victory. Now how do you expect this team to win games in the playoffs. Lebron doesn’t converts that good in clutch time, well I have seen him done it once with the Warriors. Hope he will have a consistent outside shooting not just muscle his way in to the basket. Hope he does what the great Michael Jordan did, after being criticized that he doesn’t have an outside shooting, he developed his outside shooting so well that he drains a lot of 3 point shots against the blazers.

So for the Cleveland? Lebron has to set-up in the clutch time, people are expecting that kind of game from you. Lebron James is highly paid NBA player, so he has to improve or he will just end up no winning a NBA title. So that will be my prediction for and suggestion for Cleveland

Tagged with:
Jan 19

Entourage’s Jeremey Piven grabs an Emmy

Entourage Cast

Entourage Cast

Entourage’s Jeremy Piven aka Ari Gold grabs his Emmy award for best supporting actor 2008. Jeremy Piven also won his Golden Globe for the same category for entourage. He has a funny character on entourage portraying a role of a stressful, hungry, obsessed, arrogant, unfriendly agent of Vincent “Vince” Chase who is Adrian Grenier in real life. I don’t know Hollywood life but if this TV series represents a life in Hollywood, then they are living a crazy life.

Hope Entourage will stay on air for a long time.

Tagged with:
Jan 06

Submit button click state using CSS

 

Submit button click state using CSS

Ill show you a trick using :active state in a button tag.

This is how I coded the HTML


Make sure to add the type=”submit” on your button tag to make it work on the form tag. Some people don’t use button tag because, they say it is not working for them. Well it will work this time.

active button press

active button press

            <div class=”container”>

            <form>

                        <button type=”submit”><span>submit</span></button>

            </form>

            </div>

 

Now back to the button active state trick,

body{
line-height:1;
margin:0;
padding:0;
text-align:center;
}
.container{
width:50%;
height:auto;
margin: 0 auto;
}

This part does the job for active button state
.container button{
display:block;
margin:0 auto;
padding:0;
width:86px;
height:41px;
border:0;
background:url(images/Untitled-1_03.jpg) no-repeat;
color:#FFFFFF;
outline:none;
}
.container button:active{
background:url(images/btn1_03.jpg) no-repeat;
outline:0;
}
.container button span {
display:block;
height:41px;
width:90%;
margin: 0 auto;
line-height:35px;
font-weight:bold;
}

Hope this helps.

Tagged with:
preload preload preload