Non-ScrollBox Comments in DIV Overlay?, Anyone know how? |
Non-ScrollBox Comments in DIV Overlay?, Anyone know how? |
Dec 5 2006, 04:57 AM
Post
#1
|
|
|
Newbie ![]() Group: Member Posts: 7 Joined: Dec 2006 Member No: 484,711 |
Hi,
I'm trying to figure out how to create a non-scrollbox comment box in a DIV Overlay. Currently, I have this code: CODE .comt { visibility:visible; position:absolute; left:50%; top:880px; overflow:auto; width:1030px; height:400px; border:4px ridge; border-color:006666; margin-top:800px; margin-left:-500px; background-color:transparent; z-index:5; } .comt span, .comt b {color:ffffff; visibility:visible !important; display:block; } .comt table { width:700px; } .comt table table { width:0px; } .blacktext10 { width:800px; display:inline; } .comt a, .comt font, .comt span { visibility:visible; } For the Top Friends/Comments, but when it gets to a certain length it keeps that length and transforms into a scrollbar. Anyone know how to edit the above code to take off the scrollbar? Thanks |
|
|
|
![]() |
Dec 5 2006, 02:53 PM
Post
#2
|
|
|
Newbie ![]() Group: Member Posts: 7 Joined: Dec 2006 Member No: 484,711 |
Ok, I put the height on 0 auto, and that seems to be working good.
|
|
|
|
phx1 Non-ScrollBox Comments in DIV Overlay? Dec 5 2006, 04:57 AM
jellogarden overflow: auto
becomes
overflow: hidden
try th... Dec 5 2006, 06:40 AM
phx1 Thanks for the reply.
That did indeed take off the... Dec 5 2006, 08:07 AM
jellogarden So you're good?
I don't really understand... Dec 5 2006, 05:44 PM
Bissanti All you have to do is just take out the overflow:a... Dec 5 2006, 06:20 PM
phx1 changing overflow to hidden
and height to 0 auto
... Dec 5 2006, 07:59 PM![]() ![]() |