Click here to Skip to main content
15,892,537 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi everyone...
I am using IE6.In this i need to fix facebook and twitter imagebutton in center right of the browser screen....
But in IE6 this problem get successful by my code...But when I press maximize button
these facebook and twitter image is moved to left side of the browser screen....

my code is given below...

XML
<table width="100%" border="0" cellspacing="0" cellpadding="0">
                        <tr>
                            <td align="right" valign="top">
                                <div id="fixme">
                                    <div class="sociallink">
                                        <a href="www.facebook.com">
                                            <img src="image/facebook.png" /></a><br />
                                        <a href="wwww.twitter.com">
                                            <img src="image/twitter.png" /></a><br />
                                        <a href="www.blog.com">
                                            <img src="image/blog.png" /></a>
                                    </div>
                                </div>
                            </td>
                        </tr>
                    </table>



My css here:
XML
<style type="text/css">
        #fixme
        {
            position: absolute;
            right: 0px;
            bottom: 0px;
        }
        body  div#fixme
        {
            position: fixed;

        }
       .sociallink
           {
             position: fixed;
             top: 200px;
              right: 0px;
             background: url('../image/social_bg.png') no-repeat;
            padding: 35px 0px 5px 12px;
              height: 175px;
             margin-top: 10px;
            }

    </style>


Pls help me....

Thanks & Regards
Vivek
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900