Ciao a tutti
vorrei sapere come poter cambiare il file css, in base alle pagine. Per esempio assegnare alla Home page un css più leggero, mentre alle altre pagine, qualcosa di più corposo. La home page sarebbe molto più rapida ad aprirsi. Avevo pensato di mettere un IF nell'index.php del template. La mia situazione ora è questa
<link href="<?php echo $template_path;?>/css/template_css.css" rel="stylesheet" type="text/css" />
io vorrei creare un IF facendo:
IF (homepage.html = TRUE)
{
<link href="<?php echo $template_path;?>/css/css_homepage.css" rel="stylesheet" type="text/css" />
}
else
{
<link href="<?php echo $template_path;?>/css/template_css.css" rel="stylesheet" type="text/css" />
}
. Come potrei formulare questa richiesta php ? Spero sia stato chiaro nel porre il mio quesito. Grazie a tutti in anticipo.