Używam smarty i zrobiłem plik style.css w którym dałem to:
* {
color: gold;
font-family: verdana;
font-size: 10px;
}
.td {
border-top: solid black 1px;
border-bottom: solid black 1px;
border-left: solid black 1px;
border-right: solid black 1px;
color: gold;
}
input, textarea, select {
color: gold;
background: black;
border: solid gray 1px;
}
a {
text-decoration: none;
text-transform: none;
color: gold;
}
a:hover {
text-decoration: none;
text-transform: none;
color: red;
}
body {
background: black;
}
body, iframe, select, textarea {
scrollbar-face-color: black;
scrollbar-highlight-color: gray;
scrollbar-shadow-color: gray;
scrollbar-3dlight-color: black;
scrollbar-arrow-color: gray;
scrollbar-track-color: black;
scrollbar-darkshadow-color: black;
scrollbar-base-color: black;
}
w pliku header.tpl mam to:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<link rel="stylesheet" href="style.css" type="text/css"> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-2"> <META HTTP-EQUIV="Content-Language" CONTENT="pl">
i w pliku rejestracja.tpl mam to:
{include file="header.tpl"}
</head>{if $Action == ""}
<form method=post action=rejestracja.php?action=register> <table border="1" align="center" width="766"> <tr><td colspan=2 align="center"><input type="submit" value="Zarejestruj"></td></tr> {/if}
{if $Action == "register"}
{/if}
i gdy wchodzę na stronę to napisy są czarne tak jak tło i ich nie widać
a wpliku css ustawiłem na złoty. Gdzie popełniłem błąd??