Jump to content

Q695

Members
  • Posts

    783
  • Joined

  • Last visited

Everything posted by Q695

  1. Q695

    tooltip

    Why is the text always visible, but moving from below to the side with a tool tip? http://jsfiddle.net/Q695/LynB4/
  2. Q695

    Ad Services

    Does anyone know of any good ad services out there? Ideally it would be pay per view of an ad, but if that's no longer done I could do pay per click, or another way.
  3. Q695

    tooltip

    I need the tooltip to work for the beta, but not the mouse tracking part. That can come later on.
  4. I'll do it the old way to make racking my mind easier.
  5. $total=$total+$row_merge_stats; returns only returns the first row of stats.
  6. Q695

    tooltip

    This is just for the beta of my project, not a 2.0 version of the project, I can put that in later I guess.
  7. Q695

    tooltip

    I thought I implemented the tooltip code I developed correctly, but I guess not. the CSS used on my page is as follows: <style type="text/css"> table, th, td { word-wrap:break-word; } <!--tooltip display code--> .tooltip span { display:none; } .tooltip:hover span { display:inline; position:absolute; background:white; border:1px solid silver; color:gray; padding:5px; border-radius:10px } </style> This code is nested in a layout table: <div class='tooltip'> <img style='width: 50px; height: 50px;' alt='ring' src='...'> <!--tool tip--> <span> <table> ... </table> </span> </div> Why isn't the tooltip hiding when my mouse is off the div tag, and not preventing the table from resizing?
  8. Q695

    tooltip

    How do I make the tool tip float by the mouse location now?
  9. Q695

    tooltip

    Oh, put the img inside a div tag
  10. Q695

    tooltip

    http://jsfiddle.net/Q695/S5J8h/
  11. Q695

    tooltip

    I forgot to google for a video tutorial, but applying it to an image doesn't seem to be working. I took it from:
  12. Q695

    tooltip

    I'm brand new at CSS, and understand how a onmouseover works. Can you show me an example of how you do it?
  13. horizontal rows, not vertical rows. I think I'll just add each of the table lines in a loop.
  14. Q695

    tooltip

    Does anyone have an image tooltip attached to a mouse that opens on an image, because I'm stumped. I'm thinking something like the top one on: http://jquerytools.org/demos/tooltip/any-html.html
  15. But the forum could do a link to code example like JSfiddle built in to it for showing the code, and what you're trying to do instead.
  16. You can send a blank chat message by accident.
  17. While what is true include a loop counter beyond the preset limit? You should really do a limit per page on the site with mysql.
  18. did you try looking for the solution already? http://php.net/manual/en/function.get-browser.php
  19. I'm currently working on a project similar to D&D, how would summing an entry be useful there?
  20. it's not counting, it's adding the numbers in the columns.
  21. But the way $message is setup it would by default be set to NULL, and therefore not set.
  22. The fields are being pulled from a database. The totals are going top down, not left right, and if it was totaling left, right it would be easy to do, and I would put it on the right side of the array so you could logically draw the conclusion based on how math equations were written when you were a kid. The underscores are names made generic.
  23. How are these not saying to check for the same thing, because when I run the isset it's thinking $_POST['message']! that a blank entry is something there, but !='' is saying that a blank entry isn't there? I tried the isset a few times, but every time it came out allowing a blank message the same way. Is that a bug with WAMP:Apache Version :2.2.17/PHP Version :5.3.4?
  24. the output data for these would be: Array ( [__] => 1 [______] => 1 [_____] => 1 [_____] => 1 ) Array ( [__] => 1 [_____] => 2 [_______] => 7 [_____] => 2 ) totals: 2 3 8 3 I forgot to pull the numbers for the corresponding arrays, but you get the picture.
  25. is the folder even there? go to localhost if it is on your computer.
×
×
  • Create New...

Important Information

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.