Advertisement
pressuredat19

CSS not working

May 13th, 2011
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. <head>
  2. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  3. <title><?php
  4. /*
  5. * Print the <title> tag based on what is being viewed.
  6. */
  7. global $page, $paged;
  8.  
  9. wp_title( '|', true, 'right' );
  10.  
  11. // Add the blog name.
  12. bloginfo( 'name' );
  13.  
  14. // Add the blog description for the home/front page.
  15. $site_description = get_bloginfo( 'description', 'display' );
  16. if ( $site_description && ( is_home() || is_front_page() ) )
  17. echo " | $site_description";
  18.  
  19. // Add a page number if necessary:
  20. if ( $paged >= 2 || $page >= 2 )
  21. echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) );
  22.  
  23. ?></title>
  24. <link rel="profile" href="http://gmpg.org/xfn/11" />
  25. <link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>" type="text/css" media="all" />
  26. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  27. <?php
  28. /* We add some JavaScript to pages with the comment form
  29. * to support sites with threaded comments (when in use).
  30. */
  31. if ( is_singular() && get_option( 'thread_comments' ) )
  32. wp_enqueue_script( 'comment-reply' );
  33.  
  34. /* Always have wp_head() just before the closing </head>
  35. * tag of your theme, or you will break many plugins, which
  36. * generally use this hook to add elements to <head> such
  37. * as styles, scripts, and meta tags.
  38. */
  39. wp_head();
  40. ?>
  41. </head>
  42.  
  43. <!-- START WP HEADER -->
  44. <div class="container">
  45. <div id="header">
  46. <ul id="menu">
  47. <li><a href="">Home</a></li>
  48. <li><a href="">Blog</a></li>
  49. <li><a href="">About</a></li>
  50. </ul>
  51.  
  52. <div id="logo">
  53. <h1>Adam Goss</h1>
  54. <small>Vancouver Realty at its best</small>
  55. </div><!-- close logo -->
  56.  
  57. </div><!-- close header -->
  58. <div id="jscriptslider"><img src="images/happyfamily300.jpg" />
  59. </div><!-- close jscriptslider -->
  60. <!-- END WP HEADER -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement