开发者

Multilanguage Page not working in English

I am working on a PHP "multilenguage" page, and it seems to work perfectly fine on Spanish, but I asked a friend (from Netherlands) to check it out and it doesn't seem to work cause one of the selection boxes is disabled, and I don't have this problem viewing it from my computer, installed in Spanish. I just wanted to know if there is anyone else is experimenting the same problem cause I can't really test it out any other way (proxys wont work). This is the page I am re开发者_StackOverflow中文版fering.

This is how the page should look like (except it should probably be in English instead of Spanish).


Maybe it's an IE issues. In FIrefox it works fine, but with IE (8) I don't see the first select, the one I'm posting here. (your code:)

 <p>
       Background:<label>
          <select name="BGMenu" id="BGMenu">

            <option value="1">Ancient cavers</option>
            <option value="2">Black</option>
            <option value="13">Camelot Sq Table</option>
            <!-- etc. -->
            <option value="10">Zanaris</option>
          </select>
        </label>

Solution? take the <select> OUTSIDE the LABEL TAG!! Like this:

 <p><label for="BGmenu">Background:</label>
      <select name="BGMenu" id="BGMenu">

        <option value="1">Ancient cavers</option>
        <option value="2">Black</option>
        <option value="13">Camelot Sq Table</option>
        <!-- etc. -->
        <option value="10">Zanaris</option>
      </select>
 </p>


"Multilanguage" and "The Netherlands", other than that all boxes on the page you're referring are working just fine.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜