Shoutbox

How to remove scrollbars? - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Skinning (/forumdisplay.php?fid=41)
+----- Thread: How to remove scrollbars? (/showthread.php?tid=84648)

How to remove scrollbars? by DennisMartijn on 07-03-2008 at 06:33 PM

The scrollbars in the contact list. I know 2 easy ways to hide elements like the search bar: LayoutPos=None and rect(1600,0,0,0) or something like that.

The problem, what element in wich file stands for the vertical scrollbars? or both, for all I know?
I tried 923 Definition, though I can't find anything similair to that.
I'm using Open Live.

So, if anyone knows how to tweak with them, thanks ;D


RE: How to remove scrollbars? by spongeboy on 07-03-2008 at 11:33 PM

<body scroll="no"> That's how you remove them using HTML. Just add it to your body tags.


RE: How to remove scrollbars? by LuckyMe on 07-03-2008 at 11:33 PM

Try looking at 1001 style, search for scrollbar elements, i´ve added a "visible:false;" and it works, like this:

quote:
Scrollbar
{
AccName:rcstr(20194);
AccRole:3;
Accessible:true;
Padding:rect(0,1,0,1);//rcrect(20189);
BorderThickness:rect(0,1,0,0);//rcrect(20191);
BorderColor:rgb(0,0,0);//rcclr(20187);
Visible:false;
}


Hope that helps!
RE: How to remove scrollbars? by DennisMartijn on 07-04-2008 at 04:31 PM

SimpleScrollbar[vertical]
{
LayoutPos:none;
AccName:rcstr(20195);
AccRole:3;
Accessible:true;
Padding:rcrect(20188);
BorderThickness:rcrect(20190);
BorderColor:rcclr(59504);
}

This is a better method. Setting Visible to false only results in invisibility, though I actually wanted the Contact List Contact Mouse Over image to go over the whole list, instead of being blocked by the invisible bar.

Um, yay ;3