how to edit a static page to become dynamic

gilbertgilard

New Member
hi i'm developing a site you can check it from here: www.wikima4.comand i want to have the multilingual integrate in the site. there is already a link at the upper right corner, for English, German and French. My problem is if I click this one, the 3rd column is not changing it seems it is static. Any idea how can i have it change as well? I added a code below but when I check the localhost site, that column is created on the left.
you can check the picture here: http://www.freeimagehosting.net/uploads/b828dee5e3.png \[code\] <!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="en" lang="en"> {{head}} <body class="home"> {{skip-links}} <div class="page_margins"> <div class="page"> {{header}} {{main-nav}} <!-- begin: main content area #main --> <div id="main"> <!-- begin: #col2 second float column --> <div id="col2"> <div id="col2_content" class="clearfix"> {{mesaforte-tour-button}} {{news-box}} {{events-box}} {{articles-box}} {{success-box}} {{newsletter-box}} </div> </div> <div id="col2"> <div id="col2_content" class="clearfix"> {{mesaforte-tour-button}} {{news-box}} </div> </div> <!-- end: #col2 --> <!-- {{mainde-nav}} <div id="mainde">--> <!-- begin: #col3 static column --> <div id="col3"> <div id="col3_content" class="clearfix"> <div id="home"> <div id="wikima4-home"> <p class="float_left"><a href="http://stackoverflow.com/questions/3657511/[~4~]">wikima4</a></p> </div> <div id="mesaforte-home"> <p class="float_right"><a href="http://stackoverflow.com/questions/3657511/[~5~]">mesaforte</a></p> </div> </div> {{teaser-box}} </div> <!-- IE column clearing --> <div id="ie_clearing">&nbsp;</div> </div> <!-- end: #col3 --></div><!-- end: #main --> {{footer}} </div> </div> <!-- full skiplink functionality in webkit browsers --> <script src="http://stackoverflow.com/questions/3657511/assets/templates/wikima4/yaml/core/js/webkit-focusfix.js" type="text/javascript"></script> </body> </html>\[/code\]
 
Back
Top