Ik ben bezig met een siteje (mijn eerste probeerseltje met div's en css) maar ik krijg hem niet helemaal firefox compatible. In internet explorer doet ie t wel goed maar firefox maakt er een boeltje van.
http://www.symbolic.nl/gm/
Zoals je kunt zien gooit ie de footer een stukje naar rechts maar zie zou gewoon zoals in internet explorer onderaan moeten staan.
De html
De css
Iemand die zo lief is die mij zou kunnen helpen dit probleempje op te lossen/uit te leggen??
http://www.symbolic.nl/gm/
Zoals je kunt zien gooit ie de footer een stukje naar rechts maar zie zou gewoon zoals in internet explorer onderaan moeten staan.
De html
code:
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
| <div id="pagewidth">
<div id="header">
<div class="content">Contact | Help | Mail een vriend | Home </div>
</div>
<div id="header2">
<div class="content"> </div>
</div>
<div id="content">
<div id="leftcol">
<div class="contentleft">
<p>aap</p>
</div>
</div>
<div id="rightcol">
<div class="contentright">bbb</div>
</div>
</div>
<div id="footer">
<div class="content">Blabalbalba kshdfkjhskdhf skhdfksdhfkjhsd shd<a href="http://www.test.nl" target="_blank">Testlink</a>. © 2004 Gezondheidsmagazine.</div>
</div>
</div> |
De css
code:
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
| html, body{
margin:0;
padding:0;
text-align:center;
background-image: url(images/bg.gif);
background-repeat: repeat;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000000;
}
#pagewidth{
width:750px;
text-align:left;
margin-left:auto;
margin-right:auto;
}
#header{
height: 70px;
width: 750px;
background-color: #FFFFFF;
margin-top: 4px;
background-image: url(images/logo.jpg);
background-repeat: no-repeat;
background-position: left top;
border-top-width: 1px;
border-right-width: 1px;
border-left-width: 1px;
border-top-style: solid;
border-right-style: solid;
border-left-style: solid;
border-top-color: #000000;
border-right-color: #000000;
border-left-color: #000000;
text-align: right;
}
#header2{
height: 154px;
width: 750px;
background-color: #FFFFFF;
background-image: url(images/home.jpg);
background-repeat: no-repeat;
background-position: center top;
border-right-width: 1px;
border-left-width: 1px;
border-right-style: solid;
border-left-style: solid;
border-right-color: #000000;
border-left-color: #000000;
}
#content{
width: 706px;
hight: 100%;
background-color: #FFFFFF;
border-right-width: 1px;
border-left-width: 1px;
border-right-style: solid;
border-left-style: solid;
border-right-color: #000000;
border-left-color: #000000;
padding: 22px;
}
#leftcol{
width:430px;
float:left;
position:relative;
margin-right:22px;
background-color: #00bb00;
}
#rightcol{
width:250px;
float:left;
position:relative;
background-color: #00bb00;
}
#footer{
height: 30px;
width: 100%;
clear: both;
background-color:#FFFFFF;
text-align: center;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-right-color: #000000;
border-bottom-color: #000000;
border-left-color: #000000;
} |
Iemand die zo lief is die mij zou kunnen helpen dit probleempje op te lossen/uit te leggen??
