Nieuw lid |
|
Ik ben bezig met een site waar ik nu 2 css bestanden voor heb. In de eerste basic.css staat bijna alle info die nodig is voor de index pagina. alleen header,right,footer heb ik in include.css staan. Dit omdat ik hier straks meerdere bestanden voor wil gebruiken met een rotator. Maar het probleem is dus dat hij basic.css prima laad maar de info in include.css wordt niet gebruikt. is er een mogelijkheid dat dit wel gebeurt ? Hieronder een v.b. van de index en de include.css :
<title>Untitled Document</title>
<style type="text/css">
@import url("inc/basic.css");
@import url ("inc/include.css");
</style>
</head>
<title>Untitled Document</title> <style type="text/css"> @import url("inc/basic.css"); @import url ("inc/include.css"); </style> </head>
/* CSS Document */
#header{
background-image:url(../img/header1.jpg);
height:111px;
width:100%;
}
#footer{
background: repeat-x url(../img/bottom1.jpg);
height:131px;
width:800px;
clear:both;
}
#right {
width:188px;
float:left;
background: repeat-x url(../img/right.jpg);
padding-top:150px;
padding-left:5px;
padding-right:5px;
padding-bottom:10px;
}
/* CSS Document */ #header{ background-image:url(../img/header1.jpg); height:111px; width:100%; } #footer{ background: repeat-x url(../img/bottom1.jpg); height:131px; width:800px; clear:both; } #right { width:188px; float:left; background: repeat-x url(../img/right.jpg); padding-top:150px; padding-left:5px; padding-right:5px; padding-bottom:10px; }
|