Jump to content

G1337

Members
  • Posts

    11
  • Joined

  • Last visited

G1337's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. G1337

    VB Script sucks

    You are a bloody n00b! You support Firefox and are standing up for VB Script? As a default, FF doesn't even support VB Script, so STFU!
  2. G1337

    VB Script sucks

    VB Script is a waste of bloody time, so is Microsoft and they made it. Why are you using VB Script? It's not even recommended because it sucks! Why?
  3. G1337

    background imag

    What code did you use to put the background image on the page?
  4. There are also CSS tricks for getting rid of those unsightly blue borders.
  5. G1337

    CSS pains

    Not helping.
  6. G1337

    CSS pains

    I don't have to do it in CSS only, but I don't want to use JavaScript.
  7. G1337

    CSS pains

    The second list should be hidden, it is not. When you mouse over the "menu" in the first list, the second list should be displayed, it is not. I don't know what's wrong.
  8. G1337

    CSS pains

    I'm having some trouble making a CSS drop down menu, wondering if any help can be offered, here's the code, tell me if you see a problem. <html><heaD><title>Drop down menu?</title><style type="text/CSS">a { text-decoration: none; }ul.menu, ul.menu, ul {width: 60px;border: 2.5px double blue;background-color: black;margin-left: 5px;}ul.menu li {list-style-type: none;margin: 0;position: relative;color: red;}ul.menu li > ul {display: none;position: absolute;top: 3px;left: 50px;}ul.menu ul.CSStoShow {display: none;}ul.menu li:hover > ul {display: block;}ul.menu li a { color: red; display: block; width: 100% text-decoration: none; }ul.menu li a:hover, ul.menu li a.CSStoHighLink { color: blue; }ul.menu li:hover > a {color: blue; }</style></head><body><ul class="menu"><li>Menu</li><ul><li><a href="http://Google.com">Sub</a></li><li>Menu</li><li>Here</li></ul></ul></li> This one's getting to me.
×
×
  • Create New...