J
|
Jane 1/20/2011 |
Hi, <link REL="stylesheet" href="include/style.css" type="text/css"> with this one: <link REL="stylesheet" href="include/{$custom_style}" type="text/css">
$xt->assign("custom_style","style.css"); |
F
|
fmbma author 1/20/2011 |
Hi, to load stylesheet dynamically replace this code on the Visual Editor tab: <link REL="stylesheet" href="include/style.css" type="text/css"> with this one: <link REL="stylesheet" href="include/{$custom_style}" type="text/css">
$xt->assign("custom_style","style.css");
$_SESSION["UserTheme"] = $data["UserTheme"];
$xt->assign("custom_style","style".$_SESSION["UserTheme"].".css");
|