Welcome to Gaia! ::

I need help with my scroll bar so
can anybody out there possibly help me with a v2 about me scrolling section..?

please don't send me
the link to that one forum.... talk2hand
the code I used:

Quote:
#id_about{overflow:hidden;height:###px; }
#id_about:hover{overflow-x: hidden; overflow-y: auto;}
Knight Yoshi's avatar
  • 300
  • 200
Dymee Piecee
I need help with my scroll bar so
can anybody out there possibly help me with a v2 about me scrolling section..?

please don't send me
the link to that one forum.... talk2hand
the code I used:

Quote:
#id_about{overflow:hidden;height:###px; }
#id_about:hover{overflow-x: hidden; overflow-y: auto;}


You need to wrap your about section into a list
[list]
Your about section
[/list]


Then use what's below to replace what you have in your CSS.
#id_about {height: value; width: value; overflow: hidden;}
#id_about ul {box-sizing: border-box; height: 100%; width: 115%; padding-right: value; margin-bottom: 5px; overflow: hidden; overflow-y: auto;}

Change "value" to the dimensions you want. For the padding-right, that's so that you can space it from the right so it doesn't keep feeding over and get cut off..
Knight Yoshi
Dymee Piecee
I need help with my scroll bar so
can anybody out there possibly help me with a v2 about me scrolling section..?

please don't send me
the link to that one forum.... talk2hand
the code I used:

Quote:
#id_about{overflow:hidden;height:###px; }
#id_about:hover{overflow-x: hidden; overflow-y: auto;}


You need to wrap your about section into a list
[list]
Your about section
[/list]


Then use what's below to replace what you have in your CSS.
#id_about {height: value; width: value; overflow: hidden;}
#id_about ul {box-sizing: border-box; height: 100%; width: 115%; padding-right: value; margin-bottom: 5px; overflow: hidden; overflow-y: auto;}

Change "value" to the dimensions you want. For the padding-right, that's so that you can space it from the right so it doesn't keep feeding over and get cut off..


oh haha no I got that fixed a while ago, but thanks biggrin
Knight Yoshi's avatar
  • 300
  • 200
Dymee Piecee
Knight Yoshi
Dymee Piecee
I need help with my scroll bar so
can anybody out there possibly help me with a v2 about me scrolling section..?

please don't send me
the link to that one forum.... talk2hand
the code I used:

Quote:
#id_about{overflow:hidden;height:###px; }
#id_about:hover{overflow-x: hidden; overflow-y: auto;}


You need to wrap your about section into a list
[list]
Your about section
[/list]


Then use what's below to replace what you have in your CSS.
#id_about {height: value; width: value; overflow: hidden;}
#id_about ul {box-sizing: border-box; height: 100%; width: 115%; padding-right: value; margin-bottom: 5px; overflow: hidden; overflow-y: auto;}

Change "value" to the dimensions you want. For the padding-right, that's so that you can space it from the right so it doesn't keep feeding over and get cut off..


oh haha no I got that fixed a while ago, but thanks biggrin


The difference in what you have and what I'm providing is that yours isn't really hidden. You just have the overflow set to none and auto on hover.

What mine does is remove the scroll bar from sight completely. 3nodding
Just so you know.
Knight Yoshi
Dymee Piecee
Knight Yoshi
Dymee Piecee
I need help with my scroll bar so
can anybody out there possibly help me with a v2 about me scrolling section..?

please don't send me
the link to that one forum.... talk2hand
the code I used:

Quote:
#id_about{overflow:hidden;height:###px; }
#id_about:hover{overflow-x: hidden; overflow-y: auto;}


You need to wrap your about section into a list
[list]
Your about section
[/list]


Then use what's below to replace what you have in your CSS.
#id_about {height: value; width: value; overflow: hidden;}
#id_about ul {box-sizing: border-box; height: 100%; width: 115%; padding-right: value; margin-bottom: 5px; overflow: hidden; overflow-y: auto;}

Change "value" to the dimensions you want. For the padding-right, that's so that you can space it from the right so it doesn't keep feeding over and get cut off..


oh haha no I got that fixed a while ago, but thanks biggrin


The difference in what you have and what I'm providing is that yours isn't really hidden. You just have the overflow set to none and auto on hover.

What mine does is remove the scroll bar from sight completely. 3nodding
Just so you know.

code doesn't work for me :
Knight Yoshi's avatar
  • 300
  • 200
Dymee Piecee
Knight Yoshi
Dymee Piecee
Knight Yoshi
Dymee Piecee
I need help with my scroll bar so
can anybody out there possibly help me with a v2 about me scrolling section..?

please don't send me
the link to that one forum.... talk2hand
the code I used:



You need to wrap your about section into a list
[list]
Your about section
[/list]


Then use what's below to replace what you have in your CSS.
#id_about {height: value; width: value; overflow: hidden;}
#id_about ul {box-sizing: border-box; height: 100%; width: 115%; padding-right: value; margin-bottom: 5px; overflow: hidden; overflow-y: auto;}

Change "value" to the dimensions you want. For the padding-right, that's so that you can space it from the right so it doesn't keep feeding over and get cut off..


oh haha no I got that fixed a while ago, but thanks biggrin


The difference in what you have and what I'm providing is that yours isn't really hidden. You just have the overflow set to none and auto on hover.

What mine does is remove the scroll bar from sight completely. 3nodding
Just so you know.

code doesn't work for me :


I don't even see the CSS.

Secondly, the CSS you have is all kinds of broken


1columns{width: 760px; margin-left: auto; margin-right: auto; float: none; position: relative; top: 0px;}

body { background :white }
a:link { color surprised range }
selector{background: url(http://curezone.com/upload/Members/new03/white.jpg)repeat;}
background-attachment:repeat;

#columns{width: 760px; margin-left: auto; margin-right: auto; float: none; position: relative; top: 760px;}

Red = broken

And as I said, the CSS I provided above to manipulate the about isn't even in there
previous post
#id_about {height: value; width: value; overflow: hidden;}
#id_about ul {box-sizing: border-box; height: 100%; width: 115%; padding-right: value; margin-bottom: 5px; overflow: hidden; overflow-y: auto;}
Knight Yoshi
Dymee Piecee
Knight Yoshi
Dymee Piecee
Knight Yoshi


You need to wrap your about section into a list
[list]
Your about section
[/list]


Then use what's below to replace what you have in your CSS.
#id_about {height: value; width: value; overflow: hidden;}
#id_about ul {box-sizing: border-box; height: 100%; width: 115%; padding-right: value; margin-bottom: 5px; overflow: hidden; overflow-y: auto;}

Change "value" to the dimensions you want. For the padding-right, that's so that you can space it from the right so it doesn't keep feeding over and get cut off..


oh haha no I got that fixed a while ago, but thanks biggrin


The difference in what you have and what I'm providing is that yours isn't really hidden. You just have the overflow set to none and auto on hover.

What mine does is remove the scroll bar from sight completely. 3nodding
Just so you know.

code doesn't work for me :


I don't even see the CSS.

Secondly, the CSS you have is all kinds of broken


1columns{width: 760px; margin-left: auto; margin-right: auto; float: none; position: relative; top: 0px;}

body { background :white }
a:link { color surprised range }
selector{background: url(http://curezone.com/upload/Members/new03/white.jpg)repeat;}
background-attachment:repeat;

#columns{width: 760px; margin-left: auto; margin-right: auto; float: none; position: relative; top: 760px;}

Red = broken

And as I said, the CSS I provided above to manipulate the about isn't even in there
previous post
#id_about {height: value; width: value; overflow: hidden;}
#id_about ul {box-sizing: border-box; height: 100%; width: 115%; padding-right: value; margin-bottom: 5px; overflow: hidden; overflow-y: auto;}


its not there cause I removed it -_-
but it doesn't bother meee, I don't know how to code and I never said I knew how to.
if it works for me, it works.
Knight Yoshi's avatar
  • 300
  • 200
Dymee Piecee
Knight Yoshi
Dymee Piecee
Knight Yoshi
Dymee Piecee


oh haha no I got that fixed a while ago, but thanks biggrin


The difference in what you have and what I'm providing is that yours isn't really hidden. You just have the overflow set to none and auto on hover.

What mine does is remove the scroll bar from sight completely. 3nodding
Just so you know.

code doesn't work for me :


I don't even see the CSS.

Secondly, the CSS you have is all kinds of broken


1columns{width: 760px; margin-left: auto; margin-right: auto; float: none; position: relative; top: 0px;}

body { background :white }
a:link { color surprised range }
selector{background: url(http://curezone.com/upload/Members/new03/white.jpg)repeat;}
background-attachment:repeat;

#columns{width: 760px; margin-left: auto; margin-right: auto; float: none; position: relative; top: 760px;}

Red = broken

And as I said, the CSS I provided above to manipulate the about isn't even in there
previous post
#id_about {height: value; width: value; overflow: hidden;}
#id_about ul {box-sizing: border-box; height: 100%; width: 115%; padding-right: value; margin-bottom: 5px; overflow: hidden; overflow-y: auto;}


its not there cause I removed it -_-

Well I can't see the problem if you remove it...
Knight Yoshi
Dymee Piecee
Knight Yoshi
Dymee Piecee
Knight Yoshi


The difference in what you have and what I'm providing is that yours isn't really hidden. You just have the overflow set to none and auto on hover.

What mine does is remove the scroll bar from sight completely. 3nodding
Just so you know.

code doesn't work for me :


I don't even see the CSS.

Secondly, the CSS you have is all kinds of broken


1columns{width: 760px; margin-left: auto; margin-right: auto; float: none; position: relative; top: 0px;}

body { background :white }
a:link { color surprised range }
selector{background: url(http://curezone.com/upload/Members/new03/white.jpg)repeat;}
background-attachment:repeat;

#columns{width: 760px; margin-left: auto; margin-right: auto; float: none; position: relative; top: 760px;}

Red = broken

And as I said, the CSS I provided above to manipulate the about isn't even in there
previous post
#id_about {height: value; width: value; overflow: hidden;}
#id_about ul {box-sizing: border-box; height: 100%; width: 115%; padding-right: value; margin-bottom: 5px; overflow: hidden; overflow-y: auto;}


its not there cause I removed it -_-


Well I can't see the problem if you remove it...

oh and how'd you stalk my codes?
Knight Yoshi's avatar
  • 300
  • 200
Dymee Piecee
Knight Yoshi
Dymee Piecee
Knight Yoshi
Dymee Piecee

code doesn't work for me :


I don't even see the CSS.

Secondly, the CSS you have is all kinds of broken


1columns{width: 760px; margin-left: auto; margin-right: auto; float: none; position: relative; top: 0px;}

body { background :white }
a:link { color surprised range }
selector{background: url(http://curezone.com/upload/Members/new03/white.jpg)repeat;}
background-attachment:repeat;

#columns{width: 760px; margin-left: auto; margin-right: auto; float: none; position: relative; top: 760px;}

Red = broken

And as I said, the CSS I provided above to manipulate the about isn't even in there
previous post
#id_about {height: value; width: value; overflow: hidden;}
#id_about ul {box-sizing: border-box; height: 100%; width: 115%; padding-right: value; margin-bottom: 5px; overflow: hidden; overflow-y: auto;}


its not there cause I removed it -_-


Well I can't see the problem if you remove it...


oh and how'd you stalk my codes?

Because its right in the HTML, and even if it was in an external file, you can get to any resource file being called by the page.
Simply put, I'm a web developer, its easy.

Quick Reply

Submit
Manage Your Items
Other Stuff
Get Items
Get Gaia Cash
Where Everyone Hangs Out
Other Community Areas
Virtual Spaces
Fun Stuff