[hide] text BBcode code?

Discussion in 'Technology' started by Chiquitibum, Jul 11, 2005.

  1. Chiquitibum

    Chiquitibum Member+

    Apr 4, 2004
    Norte
    Club:
    Pumas UNAM
    Nat'l Team:
    Mexico
    anyone know what the html do do this is and implement it?

    I know huss has it setup with the [result ] tags.

    tia
     
  2. Foosinho

    Foosinho New Member

    Jan 11, 1999
    New Albany, OH
    Club:
    Columbus Crew
    Nat'l Team:
    United States
    [result]Testing the hiding code...[/result]
     
  3. Foosinho

    Foosinho New Member

    Jan 11, 1999
    New Albany, OH
    Club:
    Columbus Crew
    Nat'l Team:
    United States
    Well, just as I thought - it just sets the font color to the background color using the <font> tag like so:

    <font color="#FFFFF3">Testing the hiding code...</font>
     
  4. Chiquitibum

    Chiquitibum Member+

    Apr 4, 2004
    Norte
    Club:
    Pumas UNAM
    Nat'l Team:
    Mexico


    cool that works.

    I was looking for something more fancy, like a black space where the text appears and when you mouse over it shows black bg and white font.

    like at another site, they have the following code.

    Code:
    <SPAN CLASS="hide" onmouseover="this.style.color='#FFFFFF';" onmouseout="this.style.color=this.style.backgroundColor='#000000'">&nbsp;is this hidden&nbsp;</span>
    I just dont know what is in the hide settings in the css
     
  5. Foosinho

    Foosinho New Member

    Jan 11, 1999
    New Albany, OH
    Club:
    Columbus Crew
    Nat'l Team:
    United States
    I would *guess* that it's something like this:

    .hide {
    color: #000000;
    background-color: #000000;
    }
     
  6. Chiquitibum

    Chiquitibum Member+

    Apr 4, 2004
    Norte
    Club:
    Pumas UNAM
    Nat'l Team:
    Mexico
    you the coding man dude!

    thanks for helping a programming n00b out!

    reppage!
     
  7. Foosinho

    Foosinho New Member

    Jan 11, 1999
    New Albany, OH
    Club:
    Columbus Crew
    Nat'l Team:
    United States
    No problem man. You learn by observing how other peeps get it done. Glad I could help.
     
  8. fdp

    fdp Red Card

    Oct 24, 2001
    Example anyone? I would like to see how the finished results appears... :)
     
  9. MikeLastort2

    MikeLastort2 Member

    Mar 28, 2002
    Takoma Park, MD
    Just do a "view source" on this page.
     
  10. Chiquitibum

    Chiquitibum Member+

    Apr 4, 2004
    Norte
    Club:
    Pumas UNAM
    Nat'l Team:
    Mexico

Share This Page