Hoi,
Ik heb 2 pagina's, de eerste pagina
http://hoaxer.be/bugme/index.html is alles in orde (Valid XHTML & CSS),
de 2de pagina loopt het echter fout => http://hoaxer.be/bugme/profiel.html (ook Valid XHTML & CSS)
Door één of andere reden valt de background-image van de content weg
Ik heb absoluut geen idee wat ik fout doe, het enige verschil is dat de index uit 3 div's naast elkaar bestaat & profiel.html uit 2 div's naast elkaar ... maar in beide pagina's zit zowel #homepage als #profile mee in de div #content
De css code van de eerste pagina is
Die van de 2de pagina is
Ik heb 2 pagina's, de eerste pagina
http://hoaxer.be/bugme/index.html is alles in orde (Valid XHTML & CSS),
de 2de pagina loopt het echter fout => http://hoaxer.be/bugme/profiel.html (ook Valid XHTML & CSS)
Door één of andere reden valt de background-image van de content weg
Cascading Stylesheet:
1
2
3
4
5
6
7
8
| #content { padding:5px; background-image: url(http://hoaxer.be/bugme/_images/bg_content.gif); background-repeat: repeat-x; background-attachment: fixed; background-position: left top; background-color: #248BBD; } |
Ik heb absoluut geen idee wat ik fout doe, het enige verschil is dat de index uit 3 div's naast elkaar bestaat & profiel.html uit 2 div's naast elkaar ... maar in beide pagina's zit zowel #homepage als #profile mee in de div #content
De css code van de eerste pagina is
Cascading Stylesheet:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| #homepage { clear:left; } #box-left { width:200px; border-right:1px dotted #EFEFEF; float:left; margin-left:-6px; } #box-middle { width:540px; float:left; padding:5px; } #box-right { width:200px; border-left:1px dotted #EFEFEF; float:left; margin-right:-6px; } |
Die van de 2de pagina is
Cascading Stylesheet:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| #profile { clear:left; } #profile-menu { width:200px; border-right:1px dotted #EFEFEF; float:left; margin-left:-6px; } #profile-content { width:740px; float:left; margin-right:-6px; } |
[ Voor 14% gewijzigd door Verwijderd op 20-10-2007 12:28 ]