Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For some reason, the rollover CSS I'm using won't work through Facebook's rendering engine. Am I doing something wrong or is there just an inherent problem with certain CSS properties on custom Facebook pages? Here's my code:

<link rel="stylesheet" href="http://epandits.com/topdish/newCascadeStyleSheet1.css" type="text/css" />

<table id="wrapper">
    <tr>
        <td class="imgcontainer">
            <a href="#">
                <img src="http://www.bigjimsburgers.com/burger.jpg" alt="" />
                <span class="desc">
                    Very long text that wraps around and is centered properly
                </span>
            </a>
        </td>
        <td class ="imgcontainer">
            <a href="#">
                <img src="http://www.bigjimsburgers.com/burger.jpg" alt="" />
                <span class="desc">
                    Very long text that wraps around and is centered properly
                </span>
            </a>
        </td>
    </tr>
    <tr>
        <td class="imgcontainer">
            <a href="#">
                <img src="http://www.bigjimsburgers.com/burger.jpg" alt="" />
                <span class="desc">
                    Very long text that wraps around and is centered properly
                </span>
            </a>
        </td>
        <td class ="imgcontainer">
            <a href="#">
                <img src="http://www.bigjimsburgers.com/burger.jpg" alt="" />
                <span class="desc">
                    Very long text that wraps around and is centered properly
                </span>
            </a>
        </td>
    </tr>
</table>
share|improve this question
1  
I'm not sure why you were given a -1 on this question. – sscirrus May 31 '11 at 6:12

1 Answer

maybe do without css with something crazy like this:

http://jsfiddle.net/ColbyGold/KfZmc/

share|improve this answer
That's pretty cool, but I'd really like to have the rollover text and opacity switch... Any ideas? – Alex Wood May 31 '11 at 6:44

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.