Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to combine the formula I have formatted just right with the css pop up I have set up just right, below. By combined I mean I want the pop up to show up on the formula just as on the text but retain the formula's formatting. Any help is appreciated. I'm using CSS styling for compatibility sake with Google Sites.

<!DOCTYPE html>
<html>
    <head>
        <title>document title</title>
        <style type="text/css">
a.info
{
    position:relative;
    z-index:24; background-color:#ddd;
    color:#000;
    text-decoration:none
}

a.info:hover {z-index:25; background-color:#ff0}

a.info span{display: none}

a.info:hover span
{
    display:block;
    position:absolute;
    top:2em; left:2em; width:10em;
    border:2px solid #0cf;
    background-color:#555; color:#fff;
}
        </style>
    </head>
    <body>
        <a href="http://www.bylau.com" style="text-decoration:none;">
            <font face="times new roman, serif" size="5">
                SS<sub>T</sub>&nbsp;=&nbsp;∑ (<i>x</i><sub><i>i&nbsp;</i></sub>− <i>x̄</i><sub>grand</sub>)<sup>2</sup>
            </font>
        </a>
        <br>
        <br>
        <a href="www.bylau.com" title="squared">
            <span style="text-decoration:overline;">
                <span class="texhtml">
                    <var>
                        z
                    </var>
                    <!--can't get bar over z without finding special character or having underline-->
                </span>
            </span>
        <br>
        <br>    
        </a>
        The<a class="info" href="http://www.bylau.com"> SS<sub>T </sub><span>variable explanation</span></a>formula should be here.
    </body>

</html>
share|improve this question
1  
It is not clear what you are asking. "I want the pop up to show up on the formula just as on the text but retain the formula's formatting" - but you don't currently have a "pop up" on the formula? Or is the pop up on the text to show the formula?? – w3d Dec 30 '12 at 12:13
Why the google sites tag? – Jacobvdb Jan 11 at 18:46
@Jacobvdb As I mentioned in the original question I'm writing this to be compatible with Google Sites. – timothy.s.lau Feb 18 at 9:57

migrated from webapps.stackexchange.com Dec 30 '12 at 15:15

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.