PHP interesse |
|
Beste,
Ik ben bezig aan een website layout:
http://luchtpost.hyperphp.com/
Graag wil ik aan dit design aan de rechterkant van het tekstvak nóg een tekstvak toevoegen voor het plaatsen van een logo.
Hoe kan ik dit doen?
Dit is de stylesheet:
* {
margin : 0;
padding : 0;
}
body {
line-height : 1.4em;
font-size : 0.9em;
background : #333;
font-family : Verdana, Arial, Helvetica, sans-serif;
color : #999;
}
a {
text-decoration : none;
color : #666;
}
a:link {
text-decoration : none;
color : #666;
}
a:visited {
text-decoration : none;
color : #666;
}
a:hover {
color : #ccc;
}
#container {
background : #fff;
width : 600px;
padding : 20px;
margin-left : 100px;
}
.donkergrijs {
color: 333333;
}
* { margin : 0; padding : 0; } body { line-height : 1.4em; font-size : 0.9em; background : #333; font-family : Verdana, Arial, Helvetica, sans-serif; color : #999; } a { text-decoration : none; color : #666; } a:link { text-decoration : none; color : #666; } a:visited { text-decoration : none; color : #666; } a:hover { color : #ccc; } #container { background : #fff; width : 600px; padding : 20px; margin-left : 100px; } .donkergrijs { color: 333333; }
|