Results 1 to 4 of 4

Thread: Hide any object ? help
      
   

  1. #1
    yazboz is offline Private
    Join Date
    Jul 2007
    Posts
    2

    Default Hide any object ? help

    hello

    at first start the page. for any object ( visible = true ) . how can i to give this code ?


    for example:
    this button in my page but i don't to be show
    <input type="submit" id="Button1"" name="Button1" value="Submit">

    i test it this code but can't run
    <input type="submit" id="Button1"" name="Button1" value="Submit" visible ="true">


    thanks

  2. #2
    Watdaflip's Avatar
    Watdaflip is offline Major General
    Join Date
    Sep 2005
    Location
    Cincinnati, Ohio
    Posts
    2,119

    Default Re: Hide any object ? help

    There is no html attribute "visible". If you are trying to hide an element (or display a hidden element) you have to use css such as

    <input type="submit" id="Button1"" name="Button1" value="Submit" style ="display: none;">

    or

    <input type="submit" id="Button1"" name="Button1" value="Submit" style ="display: inline;">

    Register/Login Script
    Do you use a Password Protected Directory? Need a way to allow users to make their own account, try my .htaccess Login Script

  3. #3
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,115

    Default Re: Hide any object ? help

    If you use a div to position your element, you can include a visibility: hidden , like: (in this case i used an image as example)

    <div id="my_element" style="position:absolute;left:118px;top:102px;widt h:182px;height:34px;visibility:hidden; align="left">
    <img src="images/my_image.gif" id="my_image" align="top" alt="" title="" border="0" width="182" height="34"></div>


    Otherwise, right click your Bv object and select html, then, in the Inside Tag insert:

    style="visibility:hidden"

    which is the same more or less as the code Watdaflip has presented above.
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


  4. #4
    yazboz is offline Private
    Join Date
    Jul 2007
    Posts
    2

    Default Re: Hide any object ? help

    thanks very much

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49