Quote:
Originally Posted by PornGrowsOnTrees
Hey bud, it works perfect thanks! ;)
|
Nice!
If you want the button rounded and some feedback when hovering over, add border and hover on the button:
Code:
.green_button_tip {
background: red;
border: 1px solid transparent;
border-radius: 7px;
}
.green_button_tip:hover {
border-color: blue;
}