How to remove scoll bar- help me

Posting here is no longer possible, please use the forum of a filter list project, such as EasyList
Locked
siriya
Posts: 3
Joined: Mon Sep 01, 2008 3:16 am

How to remove scoll bar- help me

Post by siriya »

How to hide the scroll bar of a table so that I don't have to scroll down to vie the table.

The site is http://www.taketheglobe.com/index.php?page=surf

i have to make
<div class="scrollBox">
to
<div>
. Is it possible?
thanks in advance
asdf

Post by asdf »

You could do CSS:

Code: Select all

.scrollBox, .scrollBox > * { overflow: hidden !important; }
But then the table won't scroll at all, you can only view what you could before you scroll.
siriya
Posts: 3
Joined: Mon Sep 01, 2008 3:16 am

Post by siriya »

I don't know how to do a CSS. Can you explain me. I am very new to this. Is it possible to edit the source so that I can change <div class="scrollBox">
to <div>
adsf

Post by adsf »

That would require javascript and the extension Greasemonkey.
Wladimir Palant

Post by Wladimir Palant »

No, you can do it much simpler with the Stylish extension. The complete style would be:

Code: Select all

@-moz-document domain(taketheglobe.com) {
  .scrollBox, .scrollBox > * { overflow: hidden !important; }
}
siriya
Posts: 3
Joined: Mon Sep 01, 2008 3:16 am

Post by siriya »

thanks for the reply. But there is a problem, I can not see all the contents in the table. Is it possible to do something so that I can see all the contents without scrolling down.
User avatar
Stupid Head
Posts: 214
Joined: Sat Aug 26, 2006 8:11 pm
Location: USA

Post by Stupid Head »

Code: Select all

@-moz-document domain(taketheglobe.com) {
  .scrollBox { height: auto !important; }
}
What, me worry?
Locked