Jump to content
xisto Community

games4u

Members
  • Content Count

    7
  • Joined

  • Last visited

Posts posted by games4u


  1. Here is an answer to Inhuman, who wanted to adjust the height of "top to bottom marquee":

     

    If you want to do it in a web page it can be done by using height attribute :

     

    <marquee direction=down height=20>Some Text Here</marquee>

     

    But if you want to add it in your signature, I can only tell you a way which may seem silly :

     

    First create a gif image using a software like Macromedia Flash MX (I use it and it is very good).

    Then It is simply easy to add the image to your signature :lol:

     

    I couldn't find another way round :)

    By the way, karlosantana, if you find another way round pls let me know.

     

    Thank you...


  2. adding backgroundimage slide show.

     

    Javascript Slideshow Tutorial

    What would be the coding of adding backgroundimage slide show in javascript?

     

    -shiv


    The easiest way of background image slideshow is by assigning different backgrounds to different <div> tags.

    So the following part of above code:

    <div id="slideShow">
    ...
    <div id="slide10">
    Some Text Here...
    </div>
    ....
    </div>

    can be changed to:

    <div id="slideShow">
    ...
    <div id="slide10" style="background-image:url(bg_image_10.bmp)">
    Some Text Here...
    </div>
    ....
    </div>

     

    The style attribute can be given for all <div> tags. And if needed the text in all <div> tags can be same - this creates a background changing effect.

     

    I hope that solved your problem :lol:


  3. Indeed. It is an easy way to get info (which you don't wan to share) from cookies. ;) But shutting down Jscript and Cookies completely spoil their respective purposes. :lol: Instead you could try creating a list of safe (trusted) websites and unsafe websites, which (as far as I know) can be done in almost all the browsers. Or else you can also use a good spam suite like Zonalarm, etc. which offer strict restrictions at unwanted web transfer (including transfer of cookie info). :)


  4. I would like to add a usual technique used by web designers.

    Most of the websites (or webpages) use tables; so it is a nice idea to use tables with border=0. Doing this gives you a very good control over the display of the webpage.

     

    For example: consider a form for entering comments on a website. Instead of simply designing the form like:

    <form>
    Enter Your Name: <input type=text name="name"><br>
    Enter Your Email: <input type=text name="email"><br>
    Enter Comments: <textarea></textarea>
    </form>

     

    it would be better to code as:

    <form><table align=center border=0>
    <tr><th>Enter Your Name:</th><td><input type=text name="name"></td></tr>
    <tr><th>Enter Your Email:</th><td><input type=text name="email"></td></tr>
    <tr><th>Enter Your Comments:</th><td><textarea></textarea></td></tr>
    </table></form>

     

    Submit buttons and reset buttons can also added.

     

    It also gives a good output.

    Thank you.

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.