-
Posts
783 -
Joined
-
Last visited
Everything posted by Q695
-
Why is the text always visible, but moving from below to the side with a tool tip? http://jsfiddle.net/Q695/LynB4/
-
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.
-
I need the tooltip to work for the beta, but not the mouse tracking part. That can come later on.
-
I'll do it the old way to make racking my mind easier.
-
$total=$total+$row_merge_stats; returns only returns the first row of stats.
-
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.
-
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?
-
How do I make the tool tip float by the mouse location now?
-
I forgot to google for a video tutorial, but applying it to an image doesn't seem to be working. I took it from:
-
I'm brand new at CSS, and understand how a onmouseover works. Can you show me an example of how you do it?
-
horizontal rows, not vertical rows. I think I'll just add each of the table lines in a loop.
-
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
-
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.
-
You can send a blank chat message by accident.
-
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.
-
did you try looking for the solution already? http://php.net/manual/en/function.get-browser.php
-
I'm currently working on a project similar to D&D, how would summing an entry be useful there?
-
it's not counting, it's adding the numbers in the columns.
-
But the way $message is setup it would by default be set to NULL, and therefore not set.
-
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.
-
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?
-
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.
-
is the folder even there? go to localhost if it is on your computer.