Go to this beta of my new website (link redacted)
. If you hover over one of the colored squares, a popup box à la Panic's Coda pops up, except there are two problems:
a) The text inside the popup does not show up. It is programmatically set to :)
using the following code:
$('td.middle', this).text(':)');
td.middle
is the class of the middle cell
this
is a reference to $('.info').each()
Use may want to use an inspector tool like Firebug for Firefox or the one included one in Safari or Google Chrome.
b) The sides are clipped off:
I think it is due to this:
For some reason, the sides have computed width
s of 1px, as opposed to
.bubbleInfo .popup td.corner {
position: inherit;
height: 15px;
width: 19px;
}
19px as defined in (link redacted)
You can grab a ZIP archive of all the files here (link redacted)
.
Thanks so much. I know this is a lot to ask.