Advertisement
Guest User

Pilot Fish Child: Stylesheet (style.css)

a guest
Sep 20th, 2013
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.37 KB | None | 0 0
  1. Theme Name: Pilot Fish Child
  2. Theme URL: http://wordpress.danielatwork.com/pilotfish/
  3. Description:
  4.  
  5. Author:
  6. Author URI:
  7. Template: pilot-fish
  8. Version: 0.1.0
  9.  
  10. @import url("../pilot-fish/style.css");
  11.  
  12. <?php
  13. /**
  14. * Header Template
  15. *
  16. *
  17. * @file header.php
  18. * @package Pilot Fish
  19. * @filesource wp-content/themes/pilot-fish/header.php
  20. * @since Pilot Fish 0.1
  21. */
  22. ?>
  23. <!doctype html>
  24. <!--[if lt IE 7 ]> <html class="no-js ie6" <?php language_attributes(); ?>> <![endif]-->
  25. <!--[if IE 7 ]> <html class="no-js ie7" <?php language_attributes(); ?>> <![endif]-->
  26. <!--[if IE 8 ]> <html class="no-js ie8" <?php language_attributes(); ?>> <![endif]-->
  27. <!--[if (gte IE 9)|!(IE)]><!--> <html class="no-js" <?php language_attributes(); ?>> <!--<![endif]-->
  28. <head>
  29. <link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/style.css" />
  30. <meta charset="<?php bloginfo('charset'); ?>">
  31. <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
  32. <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid+Sans:regular,bold" />
  33. <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid+Serif:regular,bold" />
  34. <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Fredericka+the+Great">
  35.  
  36. <title><?php wp_title(); ?></title>
  37. <script>window.jQuery || document.write('<script src="http://code.jquery.com/jquery-1.7.2.min.js"><\/script>')</script>
  38. <?php pilotfish_head(); // head hook ?>
  39. <?php wp_head(); ?>
  40. </head>
  41.  
  42. <body <?php body_class(); ?>>
  43. <?php pilotfish_container(); // before container hook ?>
  44. <div id="container" class="hentry">
  45. <?php pilotfish_header(); // before header hook ?>
  46. <div id="header">
  47. <?php pilotfish_in_header(); // header hook ?>
  48. <?php if ( get_header_image() != '' ) : ?>
  49. <div id="logo">
  50. <span class="site-name"><a href="<?php echo home_url('/'); ?>" title="<?php echo esc_attr(get_bloginfo('name', 'display')); ?>" rel="home"><?php bloginfo('name'); ?></a></span>
  51. <span class="site-description"><?php bloginfo('description'); ?></span>
  52. <a href="<?php echo home_url( '/' ); ?>"><img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="<?php bloginfo('description'); ?>" /></a>
  53. </div><!-- end of #logo -->
  54. <?php endif; ?>
  55.  
  56. <?php if ( !get_header_image() ) : ?>
  57. <div id="logo">
  58. <span class="site-name"><a href="<?php echo home_url('/'); ?>" title="<?php echo esc_attr(get_bloginfo('name', 'display')); ?>" rel="home"><?php bloginfo('name'); ?></a></span>
  59. <span class="site-description"><?php bloginfo('description'); ?></span>
  60. </div><!-- end of #logo -->
  61. <?php endif; // header image was removed ?>
  62.  
  63. <!-- Primary Navigation Menu -->
  64. <nav id="access">
  65. <?php wp_nav_menu( array( 'theme_location' => 'primary-navigation' ) ); ?>
  66. </nav>
  67. </div><!-- end of #header -->
  68.  
  69. <?php pilotfish_header_end(); // after header hook ?>
  70. <?php pilotfish_wrapper(); // before wrapper ?>
  71. <div id="wrapper" class="clearfix">
  72.  
  73. <?php pilotfish_in_wrapper(); // wrapper hook ?>
  74.  
  75.  
  76. h1 {
  77. color: #FFFFF;
  78. font-size: 2em;
  79. }
  80.  
  81.  
  82. body { border: 10px solid red !important; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement