hi there any one knows how to have a separate block for every topic in sidebar?I mean the sidebar shouldnt be continuos with one heading below the other.......for every heading there should be a SEPARATE sidebar ONE BELOW THE OTHER...............like as seen here(this image was added later)
Nah, it's still one side bar container but it's invisible (no background set on it) and inside that sidebar you have wraping divs with the desired background and all the stuff you want in seperate chunks sit in these seperate divs. You can then set in the css something like, #sidebar div {all the properties you want;} so you don't have to give classes or id's to all those wrapping divs. <div id="sidebar"> <-- set all your positioning on this one like float: left or whatever you're doing <div> bunch of stuff in here, comments whatever </div> <div> more stuff </div> <div> stuff </div> </div><--this closes the side bar. If you set the margins on the wrapping divs, they'll seperate and look like a column of seperate boxes. Is that what you meant? Without a picture I can only guess.
Here's an example of what I mean. The left column has a background colour just so you can see where it is-- you would remove this to get the effect you want. http://stommepoes.jobva.nl/Tests/sftblogger.html Good luck.