PHP gevorderde |
|
Hallo,
Ik heb een script van deze site gebruikt. (nieuwssysteem).
Daarin zat een style.Ik vind deze style passend bij mijn site.Nu wil ik hem in elke pagina gebruiken.Dit werkt behalve de achtergrond van de tabellen.Dit is wat er in mijn css staat:
body {
background-image: url("background.gif")
font-color: black;
font-size: 8pt;
font-family: verdana;
margin-top: 0px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
}
A:link {
color: gray;
font-size:8pt;
font-family:verdana;
font-style:normal;
font-weight:normal;
text-decoration:none;
cursor:hand;
font-variant:normal;
text-transform:normal;
}
A:hover {
color: yellowgreen;
font-size:8pt;
font-family:verdana;
font-style:normal;
font-weight:normal;
text-decoration:bold;
cursor:hand;
font-variant:normal;
text-transform:normal;
}
A:visited {
color: gray;
font-size:8pt;
font-family:verdana;
font-style:normal;
font-weight:normal;
text-decoration:none;
cursor:hand;
font-variant:normal;
text-transform:none;
}
A:hover {
color: yellowgreen;
font-size:8pt;
font-family:verdana;
font-style:normal;
font-weight:normal;
text-decoration:bold;
cursor:hand;
font-variant:normal;
text-transform:normal;
}
}
input, textarea, select{
background-color: lightgrey;
color: black;
border-width:1;
border-color:black;
font-family: verdana;
font-size: 8pt;
}
table, tr, td {
font-family: verdana;
font-size: 8pt;
}
.nieuws {
font-family: verdana;
font-size: 8pt;
border-width: 1;
border-style: solid;
border-color: black;
}
body { background-image: url("background.gif") font-color: black; font-size: 8pt; font-family: verdana; margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; } color: gray; font-size:8pt; font-family:verdana; font-style:normal; font-weight:normal; text-decoration:none; cursor:hand; font-variant:normal; text-transform:normal; } A:hover { color: yellowgreen; font-size:8pt; font-family:verdana; font-style:normal; font-weight:normal; text-decoration:bold; cursor:hand; font-variant:normal; text-transform:normal; } A:visited { color: gray; font-size:8pt; font-family:verdana; font-style:normal; font-weight:normal; text-decoration:none; cursor:hand; font-variant:normal; text-transform:none; } A:hover { color: yellowgreen; font-size:8pt; font-family:verdana; font-style:normal; font-weight:normal; text-decoration:bold; cursor:hand; font-variant:normal; text-transform:normal; } } input, textarea, select{ background-color: lightgrey; color: black; border-width:1; border-color:black; font-family: verdana; font-size: 8pt; } table, tr, td { font-family: verdana; font-size: 8pt; } .nieuws { font-family: verdana; font-size: 8pt; border-width: 1; border-style: solid; border-color: black; }
Nu wil ik dat de hoofd (naam,xfire) dezelfde achtergrond heeft als op de home http://www.wyger.nl/usr/sfc/ (achtergrond sitelayout)
Wat moet ik veranderen aan mijn script om dit te bekomen.Ik dacht iets met class maar dit lukt niet:
<td class=\"nieuws\"><font color="yellowgreen">»</font><b><font color="#000000">Datum:</font></td>
<td class=\"nieuws\"><font color="yellowgreen">»</font><b><font color="#000000">Datum:</font></td>
Dit is maar een stukje.Hieruit zal ik de rest wel afleiden.Wat is er mis mee?
|