reverse revolution
Joined: 27 Jun 2004 Posts: 1
|
Posted: Sun Jun 27, 2004 6:41 am Post subject: i have a dilemma |
|
|
i've searched the internet... read tutorials... i've done it all. i am at my wits end. it's 1:40am and i have to be at work at 8am and i can't sleep because the simple fact that i can't do this is driving me INSANE!
alright, so here is my problem.
i am trying to just make a very simple blog that goes into an iframe on my page: http://www.reverse-revolution.com/index2.html.
i am trying to use my external style sheet and it's not working. neither was putting the code directly in the template. could someone PLEASE tell me what i may be doing wrong?
Code: | <?php /* Don't remove this line, it calls the b2 function files ! */ $blog=1; include ("blog.header.php"); ?>
<html>
<head><LINK REL=stylesheet HREF="http://reverse-revolution.com/mystyle.css" TYPE="text/css">
</head>
<body>
<!-- // b2 loop start -->
<?php while($row = mysql_fetch_object($result)) { start_b2(); ?>
<?php the_date("d.m.y","<h1>","</h1>"); ?>
<p>
<?php permalink_anchor(); ?>
<strong><?php the_title(); ?></strong> (category: <strong><?php the_category() ?></strong>)<br />
<?php the_content(); ?><?php link_pages("<br />Pages: ","<br />","number") ?>
<br />
<em>posted by <strong><?php the_author() ?></strong> @ <a href="<?php permalink_link() ?>"><?php the_time() ?></a></em>
<br />
<a href="<?php comments_link() ?>"><?php comments_number("no comments", "1 comment", "% comments") ?></a>
</p>
<?php include ("b2comments.php"); ?>
<!-- // this is just the end of the motor - don't touch that line either :) -->
<?php } ?>
</body>
</html> |
|
|