Hoi hoi
Ik ben bezig met een eigen website en dan mbv van divjes...
Maar nu zit ik vast...
[url]http://www.wouser.phpvolution.com/website/index.htm[/url]
Het probleem is dat de header in FF verkeerd wordt weergegeven die moet namelijk 2px naar beneden zodat je een 2px rand hebt zoals ie nu in IE weergeeft. Ik denk dat ik iets verkeerd heb met de margin... maar ik heb daar al mee zitte te spelen maar lukt niet echt
Mijn css:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<style>
body {
background: url('gfx/background.png');
background-repeat: repeat;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
}
#wrapper {
width: 568px;
height: 379px;
background-color: #FFFFFF;
margin-left: auto;
margin-right: auto;
margin-top: 100px;
}
#header1 {
width: 564px;
height: 46px;
background-image: url('gfx/header/header1.png');
margin-left: 2px;
margin-right: 2px;
margin-top: 2px;
}
#box_menu {
width: 94pxx;
height: 312px;
margin-top: 2px;
background-color: #FFFFFF;
}
#box_menu ul {
float: left;
list-style-type: none;
padding: 0px;
margin: 0px;
}
#box_menu li {
width: 94px;
height: 15px;
margin-left: 2px;
margin-right: 0px;
margin-bottom: 2px;
}
</style>
Mijn html:
Kijk source
Weet iemand hoe ik dit kan oplossen???
[Laatst bewerkt door Wouser op zondag 3 december 2006, om 17:41]