Created
January 6, 2013 14:04
-
-
Save oritromax/4467356 to your computer and use it in GitHub Desktop.
A Wordpress theme Development Tutorial
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 PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head> | |
<title>Oritro New theme!</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> | |
<style type="text/css"> | |
body{ | |
background-color:#dc8; | |
font-size:16px; | |
margin:0; | |
padding:0; | |
} | |
#header{ | |
background-color:#333; | |
height:150px; | |
} | |
#right{ | |
float:right; | |
width:200px; | |
background-color:#dc8; | |
min-height:650px; /* for modern browsers */ | |
height:auto !important; /* for modern browsers */ | |
height:650px; /* for IE5.x and IE6 */ | |
} | |
#center { | |
margin-right:200px; | |
background-color:#eec; | |
min-height:650px; /* for modern browsers */ | |
height:auto !important; /* for modern browsers */ | |
height:650px; /* for IE5.x and IE6 */ | |
} | |
#footer { | |
clear:both; | |
background-color:#333; | |
height:100px; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="header"> | |
</div> | |
<div id="right"> | |
</div> | |
<div id="center"> | |
</div> | |
<div id="footer"> | |
</div> | |
</body></html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment