Jump to content
  • 0

Проблема с CSS в Smarty


shkoda
 Share

Question

У меня проблема, Большая...:D

Есть структура:

templates/index.tpl

css/main.css

index.php

Код index.tpl

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0.1//EN">
<html>
<head>
<title>{$page_name}</title>
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Language" content="ru">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<meta http-equiv="pragma" content="no-cashe">
<link rel="stylesheet" type="text/css" href="/css/main.css">

</head>
<body>
<h2>{$head_page}</h2>

</body>
</html>

Код main.css

h2 {
color : red;
font-family : 'sans-serif';
font-size : 16px;
text-align : center;
}

Код index.php

<?php

require('Smarty.class.php');

$smarty = new Smarty;

$smarty->assign("page_name","Photogallery manager");
$smarty->assign("head_page","Photogallery");

$smarty->display('index.tpl');

?>

Так вот проблема в том, что все стили из файла main.css игнорируются. Я уже пробовала и в текущем каталоге размещать css-файл, но результат один и тот же - никакого результата.

Кто знает, помогите, пожалуйста

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0
Смарти то тут каким боком??? Не там ошибку ищете.

Дело в том, что если написать все то же самое, но не в шаблоне, а в обычном php или html-файле и проверить его, то все нормально. Как только запихиваешь в шаблон, все, капут. Если знаешь, где искать, подскажи.:D

Link to comment
Share on other sites

  • 0

Ничего не получается!:D

Если вставить описание стиля глобально в шаблон

{literal}
<style>
h2 {
color : red;
font-family : 'sans-serif';
font-size : 16px;
text-align : center;
}
</style>
{/literal}

то все работает и стиль применяется! Но как только выношу описание в отдельный файл, все прекращается. Может кто-нибудь показать рабочий код?

Link to comment
Share on other sites

  • 0

У меня возникла та же проблема.

IE в Shop-Script (на Smarty) по какой-то причине не видит некоторых (!!!) классов в css.

Причем FF и Opera отрабатывают правильно, а IE6, IE7 не видят.

Буду очень признателен за подсказку где искать ошибку.

В файл index.tpl.html включен head.tpl.html в котором:

<link rel="stylesheet" type="text/css" href="style15.css">

пробовал и

<link rel="stylesheet" type="text/css" href="./style15.css">

Ничего не помогает, причем не отрабатывается стиль таких тэгов как h1, hr и некоторые имена классов... Закономерность отследить не смог.

Сайт: www.afashion.ru

Буду очень благодарен за помощь.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy