me yes me
Joined: 30 Dec 2004 Posts: 1
|
Posted: Thu Dec 30, 2004 8:40 pm Post subject: Date isn't showing up.... |
|
|
Hi, I'm just trying out b2 and I got it set up and everything. Then I started to code it. I want something really really simple. Some things work and others don't. I want the background to be black, but when I put in the code, it didn't work. I also want the date to show up in Courier New, 18px, but the date isn't even showing up. Is there anything wrong with my index.php template? (www.moviescriptending.org/b2)
Code: |
<?php /* Don't remove this line, it calls the b2 function files ! */ $blog=1; include ("blog.header.php"); ?>
<?php comments_popup_script() ?>
<style text="text/css">
<!--
body,tr,td, h6, p, li, b, u
{font-size: 9px;
font-family: georgia;
color:#000000;
line-height:9px;
letter-spacing:0pt}
-->
<!--
A:link
{ text-decoration: none; color:#D70800; }
A:visited
{ text-decoration: none; color:#D70800; }
A:hover
{ text-decoration: none; color:#000000;
-->
</style>
</head>
<body>
<!-- // b2 loop start -->
<?php while($row = mysql_fetch_object($result)) { start_b2(); ?>
<p align="left"<font face="Courier New" size="5" color="#D70800"><?php the_weekday() ?>, <?php the_date?></font></p><br>
<?php comments_popup_link("NO COMMENTS", "01 COMMENT", "% COMMMENTS") ?><br>
<?php the_content(); ?>
<!-- this includes the comments and a form to add a new comment -->
<?php include ("b2comments.php"); ?>
<!-- // this is just the end of the motor - don't touch that line either :) -->
<?php } ?>
[powered by <a href="http://cafelog.com" target="_blank"><b>b2</b></a>.]
<p>
<a href="b2login.php">login</a>
</body>
</html>
|
Thanks.[/code] |
|