css help needed

Discussion in 'CSS' started by arale, Nov 17, 2007.

  1. #1
    Hi,

    Could you please help me about css. I have site www.meoso.com Now I want to add adsense to right side, on blank area. I have create css:


    #fixed_link {
    position: fixed;
    bottom: 0;
    }

    And add a div with id: fixed_link. But result is bad: www.meoso.com/top225.php Could you please help me to resolved this?

    Thank you very much
     
    arale, Nov 17, 2007 IP
  2. mitchbrysoncom

    mitchbrysoncom Peon

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    try...

    #fixed_link {
    float: right;
    }

    or if you want it positioned far right, you would use...


    #fixed_link {
    position: absolute;
    right: 0;
    top 0;
    }

    and set #content to...

    #content { position: relative; }
     
    mitchbrysoncom, Nov 17, 2007 IP