Hi, I want to add a floating div that will run with the scroll bar on the right. In all the websites I saw it the ID was: "div id="floatdiv" ... Can anyone tell me how to use it and what are the CSS attributes for that div? Thanks
you can use the same code #floatdiv{ float:right; margin: 8px; overflow:auto; width:320px; /*custom*/ height:260px;/*custom*/ } you can use position:absolute;z-index:333; add to div for best choice
the attributes needed for div positioning are: float, position, margin, right, left, top, bottom, and a few more but these are basic ones! Search for their values! DIV Positioning is a thing which requires separate learning!
Thanks everyone. I got what I wanted with your help and already implemented in my websites. No need for further replies...