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
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; }