top.php
$smarty->assign('style_url',STORE_URL.'csscon.php?store='.STORE_ID);
$smarty->display(PATH.'top.tpl');
top.tpl
<link rel="stylesheet" href="{$style_url}">
csscon.php
include PATH.'css/'.STORE_ID.'/css/style.css';
如果查看视图源代码,它会显示所有CSS样式,但它不应用CSS。那么我该如何应用这种风格呢?
由于