scroller blog division styles!

liunx

Guest
hi, at my website I have a blog (weblog) and it's in a division style scroller, but I cant get the text to fit right in the scroller, no matter what size I make it. The right side of the text will overlap to the right side, where you can not read it. For a example check out: <!-- m --><a class="postlink" href="http://natie.cjb.net">http://natie.cjb.net</a><!-- m --> anyone have any suggestions?<br />
<br />
natie<br />
`[email protected]<!--content-->figured it out:<br />
<br />
<br />
<style type="text/css"><br />
#divUp{position:absolute; left:590; top:15}<br />
#divDown{position:absolute; left:590; top:280}<br />
#divCont{position:absolute; width:250; height:275; top:18; left:349; clip:rect(0,241,275,0); visibility:hidden}<br />
#divText{position:absolute; top:18; left:200}<br />
</style><br />
<br />
<br />
just change your style tag. See the difference from mine (above) to yours (below):<br />
<br />
<br />
<style type="text/css"><br />
#divUp{position:absolute; left:590; top:15}<br />
#divDown{position:absolute; left:590; top:280}<br />
#divCont{position:absolute; width:298; height:275; overflow:hidden; top:18; left:349; clip:rect(0,241,275,0); visibility:hidden}<br />
#divText{position:absolute; top:18; left:200}<br />
</style><br />
<br />
<br />
I took this code out:<br />
<br />
overflow:hidden;<!--content-->
 
Back
Top