diff options
author | Guillaume Seguin <ixce@seagull.dreamhost.com> | 2008-04-01 12:20:04 -0700 |
---|---|---|
committer | Guillaume Seguin <ixce@seagull.dreamhost.com> | 2008-04-01 12:20:04 -0700 |
commit | a4151fd3d8abf133963870eb57ae2d61118ac9e4 (patch) | |
tree | d961692d03ca81c9616e1f01804eab31fc590145 | |
parent | 279ec42607800aae7f8cd049e96423fc8d8787fc (diff) | |
download | fusion-wp-theme-a4151fd3d8abf133963870eb57ae2d61118ac9e4.tar.gz fusion-wp-theme-a4151fd3d8abf133963870eb57ae2d61118ac9e4.tar.bz2 |
-rw-r--r-- | fusion.css | 25 | ||||
-rw-r--r-- | header.php | 13 |
2 files changed, 27 insertions, 11 deletions
@@ -20,7 +20,7 @@ body { font-size: 12px; color:#eeeeee; background-color:#1a1a1a; - margin: 5px 10px 10px 10px; + margin: 5px 10px 10px 10px; } input, select, textarea { padding: 3px; @@ -121,25 +121,34 @@ p { color:#eeeeee; width:143px; height:22px; - padding: 0px; padding: 6px 5px 3px 5px; vertical-align: middle; - background-color:transparent; - background-image:url(img/cf_search_bg.png); - border:none; + background-color: transparent; + background-image:url(img/cf_search_bg.png); + border:0; margin-top:0px; + margin-right: 2px; } #searchboxButton { float:left; position:relative; width:20px; height:26px; - margin-left: 2px; - background-color:transparent; + padding-top: 26px; + padding-left: 0px; + padding-right: 0px; + padding-bottom: 0; + margin: 0; + background-color: transparent; background-image:url(img/cf_search_button.png); - border:none; + border:0; cursor:pointer; + cursor: hand; /* for IE 5.x */ font-size: 0px; + overflow: hidden; +} +form>#searchboxButton { /* For non-IE browsers*/ + height: 0px; } /* menubar div */ @@ -11,7 +11,10 @@ <style type="text/css" media="screen"> @import url( <?php bloginfo('stylesheet_url'); ?> ); </style> - + + <link rel="shortcut icon" type="image/png" href="favicon.png" /> + <link rel="icon" type="image/png" href="favicon.png" /> + <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" /> <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" /> @@ -38,14 +41,16 @@ <div id="headerContent"> <a id="logo" href="http://www.compiz-fusion.org/"></a> <a id="logo-text" href="http://www.compiz-fusion.org/"></a> - + <?php /* <div id="searchbox"> <form id="" method="get" action="http://www.compiz-fusion.org/"> <div id="searchboxLCap"></div> <input type="text" id="searchboxInput" name="s" /> - <input type="submit" id="searchboxButton" value="" title="<?php _e('Search'); ?>" /> + <button type="submit" id="searchboxButton" value=""><?php _e('Search'); ?></button> </form> </div> + */ + ?> </div> </div> @@ -54,6 +59,8 @@ <ul> <li><a href="<?php bloginfo('url'); ?>/">Home</a></li> <li><a href="<?php bloginfo('url'); ?>/team/">Team</a></li> + <li><a href="http://gitweb.compiz-fusion.org">Gitweb</a></li> + <li><a href="http://cgit.compiz-fusion.org">Cgit</a></li> </ul> </div> </div> |