hi, im using smarty with php.. everything is ok except dealing with css..
e.g: in template.tpl
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
...
<body>
..
<td class="navText">hello world</td>
index.php
<?php
// load Smarty library
require('C:/Smarty/libs/Smarty.class.php');
$smarty = new Smarty();
$smarty->template_dir = 'c:/inetpub/wwwroot/smarty/templates';
$smarty->config_dir = ' c:/inetpub/wwwroot/smarty/config';
$smarty->cache_dir = 'c:/Smarty/cache';
$smarty->compile_dir = 'c:/Smarty/templates_c';
$smarty->display('template.tpl');
?>
where navText is in style.css..i've include it in
index.tpl . everything looks ok in my editor but when i run it, the style could not be seen.
pls help tks.