Jump to content

paulclift

Members
  • Posts

    34
  • Joined

  • Last visited

Everything posted by paulclift

  1. Hey all, This will be easy for some of you but it's making me pull my hair out. Here is the relevant URL: http://www.neuverband.ch/index_TEMP.html I want to set the 'choose language' switch in the top right so that it will jump to the same page, in the chose language, as the one which is currently loaded... e.g. if the 'about-us' page is loaded and you switch language, rather than going back to the main page, it should go to 'about-us' in the new language. The site is organised in this way: page-name-in-English + _ + LANGUAGE + .html so, the possible URLs for 'about-us' are: about-us_EN.html about-us_DE.html about-us_FR.html about-us_IT.html As I see it, to do this, it's just a simple three-step process: 1. Store current iframe URL as variable 'X' - ALREADY DONE 2. Remove suffix _LANG from X and store as variable 'Y' - ALREADY DONE 3. set links in the 'choose-language-switch' to Y_EN, Y_DE, Y_FR & Y_IT - THIS PART IS WHAT I AM TRIPPING UP ON All of this will happen in the index_TEMP.html because the whole site displays with inline frames (id="mainframe"). PLEASE HELP! Paul
  2. I am trying to make a checkbox work with a label which is INSIDE an <a href> ..,the label function isn't working because of both the separate <div> in which it appears and also because of the anchors. Is there are work-around for this? Can I 'hard code' the labels with css or jscript so that they will work universally throughout the page? Easier if I just post the code rather than trying to explain: <div id="blah"><input type="checkbox" id="1" checked onclick="fnchecked(this.checked);"> <ul class="menu collapsible"> <li> <a href="#"> <div class="more"><label for="1">[+]</label></div> <div class="less"><label for="1">[–]</label></div> </a> <ul class="acitem"> <BR> <li>TEXT TEXT TEXT </li> </ul></li></ul> The page I am using this with is here: http://www.paulclift.net/news.htmlBasically, I am trying to have a plus/minus symbol which ALSO activates a drop-down menu. PLEASE HELP!
  3. Hey, thanks for responding. The code is in the index.html -- but here it is again: <!--START MENU--!> <div id="menu"> <TABLE width="100%" height="100%" border="0"> <TR> <TD style="width:17px; height:10%"></TD><TD></TD></TR> <TR> <TD></TD> <TD> <ul class="menu collapsible"> <li> <a target="mainframe" href="home.html">Home</a> </li> <li> <a target="mainframe" href="news.html">News & Performances</a> </li> <li> <a href="#">Media</a> <ul class="acitem"> <li><a target="mainframe" href="audio.html">Audio</a></li> <li><a target="mainframe" href="video.html">Video</a></li> <li><a target="mainframe" href="photos.html">Photos</a></li> </ul> </li> <li> <a href="#">Biography</a> <ul class="acitem"> <li><a target="mainframe" href="bio_EN.html">English</a></li> <li><a target="mainframe" href="bio_FR.html">Français</a></li> <li><a target="mainframe" href="bio_DE.html">Deutsch</a></li> <li><a target="mainframe" href="bio_IT.html">Italiano</a></li> </ul> </li> <li> <a href="#">List of Works</a> <ul class="acitem"> <li><a target="mainframe" href="works.html#LEW">for large ensemble</a></li> <li><a target="mainframe" href="works.html#EW">for chamber ensembles</a></li> <li><a target="mainframe" href="works.html#SW">solo works</a></li> <li><a target="mainframe" href="works.html#SWWE">solo with electronics</a></li> <li><a target="mainframe" href="works.html#MC">fixed-media</a></li> </ul> </li> <li> <a target="mainframe" href="contact.html">Contact</a> </li> </ul> </TD> <TR><TD style="height:40%"></TD><TD></TD> </TABLE> </div><!--END MENU--!>
  4. Hey all, I have noticed something very strange in Safari & Chrome (but not Firefox)... when I jump to an anchor in a frame window, the main-page organisation gets messed up (certain divs disappear altogether).. Here is what I mean: http://www.paulclift.net/ <---on the left-hand-side menu, click on 'List of Works', then any item... the top div disappears altogether!! Any ideas on why this is happening? The links to the relevant pages are: http://www.paulclift.net/index.htmlhttp://www.paulclift.net/home.htmlhttp://www.paulclift.net/works.htmlhttp://www.paulclift.net/core-style.css I would very much appreciate it if someone could help me with this! Best, Paul
×
×
  • Create New...