This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php the_excerpt(); // Show excerpt and not full post content ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*********************************************** | |
NAV CSS | |
***********************************************/ | |
#nav_holder { background-color: #000; width: 100%; height: 35px; background-image: url(images/stripe_bg.jpg); background-repeat: repeat-x; margin: 0 0 10px 0;} | |
#main_nav{ float: left; margin: 0px 0px 10px 0px; height: 35px; color: #fff; width: 650px; /*background-color: #000;*/ } | |
#main_nav ul { font-size: 14px; list-style: none; } | |
#main_nav ul li { display: block; position: relative; float: left; z-index: 99999; } | |
#main_nav li ul { display: none; } | |
#main_nav ul li a { display: block; text-decoration: none; color: #ffffff; padding: 10px 15px; margin-left: 1px; white-space: nowrap; border-right: 1px solid #444; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/Applications/MAMP/Library/bin/mysql --host=localhost -uroot -proot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-webkit-border-radius: 10px; | |
-moz-border-radius: 10px; | |
border-radius: 10px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ----------- My Form ----------- */ | |
.myform{ | |
/*position:absolute; left:560px; top:60px;*/ | |
margin:0 auto; | |
width:360px; | |
padding:14px; | |
} | |
/* ----------- stylized ----------- */ | |
#stylized{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="form"> | |
<div id="stylized" class="myform"> | |
<form id="create_account" name="create_account" method="post"> | |
<label>First Name:<span class="small">Add Your First Name</span></label> | |
<input type="text" name="fname" id="fname" value="<?= $_POST['fname']?>" /> | |
<br /> | |
<label>Last Name:<span class="small">Add Your Last Name</span></label> | |
<input type="text" name="lname" id="lname" value="<?= $_POST['lname']?>" /> | |
<br /> | |
<label> Address:<span class="small">Your Address</span></label> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Global CSS */ | |
html, body, div, span, applet, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, big, cite, code, | |
del, dfn, em, img, ins, kbd, q, s, samp, | |
small, strike, strong, sub, sup, tt, var, | |
b, u, i, center, | |
dl, dt, dd, ol, ul, li, | |
fieldset, form, label, legend, | |
table, caption, tbody, tfoot, thead, tr, th, td, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>The HTML5 Herald</title> | |
<meta name="description" content="The HTML5 Herald"> | |
<meta name="author" content="SitePoint"> | |
<link rel="stylesheet" href="css/styles.css?v=1.0"> | |
<!--[if lt IE 9]> | |
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> |
NewerOlder