Website : http://109.70.4.184/~jthelen/
De website is verdeelt in een linker container waar de navigatie zit en een rechter container waar de content zit.
De bedoeling is dat de rechterkant altijd de maximale hoogte gebruikt, en dus de achtergrond afbeelding zich herhaalt... Ik heb wel veel geprobeerd met faux columns maar dat is toch ook een gepuzzel en niet ideaal.
Is er iemand die me hier uit kan helpen?
Dit is zoals die moet.. alleen dit is in tables:
www.yogaopleidinghara.nl
De website is verdeelt in een linker container waar de navigatie zit en een rechter container waar de content zit.
De bedoeling is dat de rechterkant altijd de maximale hoogte gebruikt, en dus de achtergrond afbeelding zich herhaalt... Ik heb wel veel geprobeerd met faux columns maar dat is toch ook een gepuzzel en niet ideaal.
Is er iemand die me hier uit kan helpen?
Dit is zoals die moet.. alleen dit is in tables:
www.yogaopleidinghara.nl
HTML:
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
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" > <head> <jdoc:include type="head" /> <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/reset.css" type="text/css" /> <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/style.css" type="text/css" /> </head> <body> <div id="container"> <div id="container-left"> <div id="logo"> <img src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/images/logo.png" alt="Logo Yoga Opleiding Hara" /> </div> <div id="menu"> <jdoc:include type="modules" name="navigation" /> </div> </div> <div id="container-right"> <div id="background"> <jdoc:include type="component" /> </div> </div> </div> </body> </html> |
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
| #container{ width:960px; height:100%; margin: 0 auto; } #container-left{ width: 160px; float: left; display: inline; height:100%; } #logo{ margin-top: 25px; text-align: center; } #menu{ margin-top: 25px; } #container-right{ width: 790px; float: right; display: inline; color:#064E39; font-family:Corbel,Verdana,Times New Roman; font-size:16px; line-height: 20px; height:100%; } #background { background-image: url(../images/background.jpg); background-repeat: repeat-y; border: 5px solid #F5E7B8; } |