June 23, 200719 yr Hi, what I want to do is publish my bio in two languages on my My Space page. Here is the idea: the visitor clicks on either French or English and gets the bio in the requested language. I can do it in javascript it takes about 2 minutes but javascript doesn't work on My Space... so I have to use CSS... Here is the css: <style type="text/css"> .lien a { text-decoration:none; } .texte p { display:none; position:absolute; top:30px; left:10px; text-align:left; } p.afficher { display:block; } p.cacher { display:none; } </style> Here is the body part: <div class="lien"> <a id="lienFr" href="#" onclick= "texteEn = 'cacher'; texteFr.className = 'afficher'"> [Français] </a> <a id="lienEn" href="#" onclick= "texteFr = 'cacher'; texteEn.className = 'afficher'"> [English] </a> </div> <div class="texte"> <p id="texteFr" > Text in French </p> <p id="texteEn"> Text in English </p> </div> Hope you can solve that, it could be useful to many people. Thanks.
Create an account or sign in to comment