Need help with my homepage
-
I would like to add a centered youtube video and an enter here that links to my blog to this page https://blindivan.com.
Here is my php code for the homepage:
<?php /** Template Name: Page with background only */ ?> <html> <head> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <style type="text/css"> body { background-color: #cccccc; background-image: url('https://blindivan.com/wp-content/uploads/2011/04/Cemetary.jpg'); background-repeat: repeat-y; background-position: top center; background-attachment: scroll; } #page-content { width: 800px; margin: 20px auto; } </style> <title><?php wp_title( '|', true, 'right' ); bloginfo('url'); ?></title> <?php wp_head(); ?> </head> <body> <?php while (have_posts()) : the_post(); ?> <div id="page-content"> <?php the_content(); endwhile; ?> </div> </body> </html>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Need help with my homepage’ is closed to new replies.