Jump to content

HighCaliber

Members
  • Posts

    44
  • Joined

  • Last visited

About HighCaliber

  • Birthday 03/12/1989

Contact Methods

  • Website URL
    http://
  • ICQ
    0
  • Yahoo
    guitarplayer9999@yahoo.com

HighCaliber's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. I am creating my own game script and I would like to sort my MySQL results for my all games page into two columns. I would like it to show the first half of the entries in column 1 and the second half in column 2.For example... <table><tr><td>Entry 1</td><td>Entry 4</td></tr><tr><td>Entry 2</td><td>Entry 5</td></tr><tr><td>Entry 3</td><td>Entry 6</td></tr></table> Does anyone know how to make it sort entries this way?
  2. Set the height of your body to 100%. Then see if the 40% works.
  3. HighCaliber

    CSS Tooltip

    Does anyone know how to make a browser friendly css tooltip? I have the following but it is not working in IE. a.tooltip { position:relative; z-index:24; } a.tooltip:hover { z-index:25; } a.tooltip span { display: none; } a.tooltip:hover span { background: transparent url('Themes/Default/Images/tooltip.gif') left center no-repeat; border: 0px; bottom: -5px; color: black; display: block; height: 54px; padding: 3px 3px 3px 15px; position: absolute; right: -222px; text-align: center; width: 202px; }
  4. Thank you, it finally works i have been asking around on multiple forums trying to get this fixed and it was so simple. Now I feel stupid lol
  5. I am trying to create a toggle function for my forum.Here is my javasript code... <script type="JavaScript">function toggle(obj1, obj2) { var el = document.getElementById(obj1); var el2 = document.getElementById(obj2); if ( el.style.display != 'none' ) { el.style.display = 'none'; el2.src = "Themes/Default/Images/category_expand.png"; } else { el.style.display = ''; el2.src = "Themes/Default/Images/category_shrink.png"; }}</script> and here is what i am trying to toggle... <a href="java script:toggle(1, si1)"><img alt="" border="0" src="Themes/Default/Images/category_shrink.png" id="si1" /></a><table cellspacing="1" class="Section_Middle" id="1"><tr><td>content to toggle</td></tr></table> For some reason this will not work, when i go to validate it it says el2 has no properties. Can anyone figure how to fix this or show me a valid (W3C Standards) way to toggle two objects.
  6. HighCaliber

    Forums?

    Good luck, I am currently coding one myself, so far i have it to where you can view and post topics and replies and i have a word filter and support for bbc code. It takes time and patience. I am new to php but i have found a lot of help throught tutorials and asking questions on forums. The biggest challenge for me is going to be the user system.
  7. Please review www.ugplay.comAll comments and suggestions welcome.Thanks,Chris
  8. There could be some kind of test that you take to qualify as good in certain areas. It would have to have a time limit or something to prevent cheating. That would at least help a little as to preventing bragging.Chris
  9. I think this is what you want...CSS html, body {background: black url(blah/blah.jpg)font-family: arial, helvetica, sans-serif;height: 100%;margin: 0px;padding:0px;width: 100%;}#header {background: #fff url(untitled.bmp);color: red;height: 200px;padding: 0;text-align: center;width: 100%;} HTML <html><head><title>HTML Editor</title><link href="style.css" rel="stylesheet" type="text/css" /></head><body><div id="header"></div></body></html> If you need to know more let me know.Chris
  10. Post your code and I will try to help.Chris
  11. Can you give me the dimensions you desire it to be?Then I'll try to create it for you.Matt
  12. I said, "dealing with oceans and fish."Dolphins are in the ocean.Chris
  13. MirokuDo you want to make the scroll box using html instead of flash?If so I think I can help.Matt
  14. What exactly are you wanting?
×
×
  • Create New...