Thread Starter
lellow
(@lellow)
Don’t mean to bump – but I thought maybe someone can help if I posted my codes. Here is my header file:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">
<title>Colbie Caillat Fans • ColbieCaillatFans.Net</title>
<meta name="description" content="Colbie Caillat Fans - Ultimate fan site with information, media and downloads, photos, and more!">
<meta name="keywords" content="Colbie Caillat, Colbie, Bubbly, CoCo, Videos, Music, Photos,">
<meta NAME="Language" CONTENT="English">
<META NAME="ROBOTS" CONTENT="follow, all">
<META NAME="REVISIT-AFTER" CONTENT="1 days">
<META NAME="RATING" CONTENT="general">
<meta name="author" content="Minnie">
<meta name="copyright" content="2008-2009">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="imagetoolbar" content="no">
<link rel="stylesheet" type="text/css" href="http://colbiecaillatfan.net/wp-content/themes/Bubbly/style.css" media="all">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<?php wp_head(); ?>
</head>
<body>
<table width="872" height="528" border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td colspan="9">
<img src="images/colbiefans_01.jpg" width="872" height="70" alt=""></td>
</tr>
<tr>
<td colspan="9">
<img src="images/colbiefans_02.jpg" width="872" height="203" alt=""></td>
</tr>
<tr>
<td colspan="3">
<img src="images/colbiefans_03.jpg" width="312" height="32" alt=""></td>
<td>
<a href="colbie.php">
<img src="images/colbiefans_04.jpg" border="0" width="52" height="32" alt=""></a></td>
<td>
<a href="#">
<img src="images/colbiefans_05.jpg" border="0" width="81" height="32" alt=""></a></td>
<td>
<a href="#">
<img src="images/colbiefans_06.jpg" border="0" width="70" height="32" alt=""></a></td>
<td>
<a href="#">
<img src="images/colbiefans_07.jpg" border="0" width="49" height="32" alt=""></a></td>
<td colspan="2">
<img src="images/colbiefans_08.jpg" width="308" height="32" alt=""></td>
</tr>
<tr>
<td background="images/colbiefans_09.jpg" width="15" height="157"></td>
<td valign="top" background="images/colbiefans_10.jpg" style="background-repeat:no-repeat; background-color:#f9f5ec;" width="274" height="157">
<?php get_sidebar(); ?></td>
<td colspan="6" valign="top" background= "images/colbiefans_11.jpg" style="background-repeat:no-repeat; background-color:#f9f5ec;" width="568" height="157">
My index file:
<?php get_header(); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<table width="98%" cellbadding="0" cellspacing="2" border="0">
<tr><td class="post-title"><b><?php the_title(); ?></b></td></tr>
<tr><td class="post-news"><?php the_content('Read the rest of this entry »'); ?></td></tr>
<tr><td class="post-date-author"><?php the_time('F jS, Y') ?> by <?php the_author() ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></td></tr></table>
<?php comments_template(); ?>
<?php endwhile; ?>
<div align="center"><?php next_posts_link('« Older Entries') ?> -
<?php previous_posts_link('Newer Entries »') ?></div>
<?php else : ?>
<h2 align="center">Not Found</h2>
<div align="center">Sorry, but you are looking for something that isn't here.</div>
<?php endif; ?>
<?php get_footer(); ?>
Any help?!