Spojenie CSS s templatom
Napísané: So Okt 01, 2005 6:21 pm
Navod pre toho, kto by chcel spojit CSS subor s templatom a tak ho lahsie editovat v admin prostredi Etomite. 
Kód: Vybrať všetko
<head>
<title>
Nazov Webu
</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
@import url('cesta/style1.css');
@import url('cesta/style2.css');
</style>
</head>Kód: Vybrať všetko
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>
Nazov Webu
</title>
<style type="text/css">
<!--
/*Tu vlozit obsah CSS suboru*/
-->
</style>
</head>