Status
Not open for further replies.
2 comments
The "Click Here" button can be changed to something good.

Use this

PHP:
input[type="submit"] {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #ffffff;
	padding: 6px 10px;
	background: -moz-linear-gradient(
		top,
		#0d83ba 0%,
		#0c5b80);
	background: -webkit-gradient(
		linear, left top, left bottom, 
		from(#0d83ba),
		to(#0c5b80));
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	border: 1px solid #0a4e6e;
	-moz-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 1px 0px rgba(247,249,250,0.3);
	-webkit-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 1px 0px rgba(247,249,250,0.3);
	box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 1px 0px rgba(247,249,250,0.3);
	text-shadow:
		0px -1px 0px rgba(000,000,000,0.9),
		0px 1px 0px rgba(255,255,255,0.3);
	opacity:0.7;
}

input[type="submit"] {
	opacity:1
}

That'd look sexy :p

Style the bottom text links too.

PHP:
a,a:visited {color:#37a3e1;font-size:14px;font-family:Verdana, Arial, Tahoma}
a:hover,a:active {color:#e18b37}

Add them to your stylesheet.css
 
Status
Not open for further replies.
Back
Top