Welcome to Gaia! ::

Visitor?

Yes I am *raises hand* 1 100.0% [ 10717 ]
Total Votes:[ 10717 ]
< 1 2 3 4 5 6 7 8 9 10 ... 61 62 63 > >>
Shin: its not really meant to ask css-questions in this thread.. but ah well.
I see you have used position: relative; in your #about and you cant do that if
you want the #about ol to show up.
-_Th3_ShiN_-'s avatar
  • 100
  • 200
  • 200
plysch
Shin: its not really meant to ask css-questions in this thread.. but ah well.
I see you have used position: relative; in your #about and you cant do that if
you want the #about ol to show up.
User ImageShinjitsu wa Itsumo Hitotsu


oops redface sorry.

but do i need to change it to absolute. and also i want it to show up where it says my quilts not in the about section
User ImageQuesting for a NiteMare Scarf
[x-Shin-x]
plysch
Shin: its not really meant to ask css-questions in this thread.. but ah well.
I see you have used position: relative; in your #about and you cant do that if
you want the #about ol to show up.
User ImageShinjitsu wa Itsumo Hitotsu


oops redface sorry.

but do i need to change it to absolute. and also i want it to show up where it says my quilts not in the about section
User ImageQuesting for a NiteMare Scarf


Yeah you cant use position: absolute OR position: relative.
You have to position the section with margins. That is if you
want a scroll in the regular about-section. You can however
position the new custom section with position:absolute if
you want. ^_^ A bit complicated I know...
-_Th3_ShiN_-'s avatar
  • 100
  • 200
  • 200
sweatdrop dont get it really
You created the code you have in your profile now... or? sweatdrop
-_Th3_ShiN_-'s avatar
  • 100
  • 200
  • 200
plysch
You created the code you have in your profile now... or? sweatdrop
User ImageShinjitsu wa Itsumo Hitotsu
yea i created the code for my profile now but i only have that much basic knowlage >.< and when i add the about ol it doesnt show up. with or without absolute
User ImageQuesting for a NiteMare Scarf
[x-Shin-x]
plysch
You created the code you have in your profile now... or? sweatdrop
User ImageShinjitsu wa Itsumo Hitotsu
yea i created the code for my profile now but i only have that much basic knowlage >.< and when i add the about ol it doesnt show up. with or without absolute
User ImageQuesting for a NiteMare Scarf


The #about section you cant use relative or absolute to position IF you want a scroll in that section. You have to use margins to position that.
(margin-top is one code you already used in your code now....)
The #about ol you can position witjh absolute if you want.
I still see in your code that the position: relative is there
in the #about. So until you take that out the new section will
not show up for sure...

Have you added the thing you need to add to your about-box?
Like all the patches that makes the quilt?
(not the ccs-code but where you add all the text for the about...)
-_Th3_ShiN_-'s avatar
  • 100
  • 200
  • 200
This is what i added to the css

#about
{position: absolute; overflow: auto; overflow-x: hidden; height: 215px; width: 320px;
font-size: 10px;
background:no-repeat top left;
border: none;
margin-bottom: 10px;
width 300px;
left: 0px;
top: -650px;
left: 100px;
overflow:auto; overflow-x: hidden;
scrollbar-arrow-color: #FDFDFD;
scrollbar-track-color: #FDFDFD;
scrollbar-face-color: #FDFDFD;
scrollbar-highlight-color: #FDFDFD;
scrollbar-3dlight-color: #FDFDFD;
scrollbar-darkshadow-color: #FDFDFD;
scrollbar-shadow-color:#FDFDFD;
}

#about ol{
position: absolute; overflow: auto; overflow-x: hidden; height: 148px; width: 220px;
font-size: 10px;
background:no-repeat top left;
border: none;
margin-bottom: 10px;
width 235px;
left: 0px;
top: -400px;
left: 515px;
overflow:auto; overflow-x: hidden;
scrollbar-arrow-color: #FDFDFD;
scrollbar-track-color: #FDFDFD;
scrollbar-face-color: #FDFDFD;
scrollbar-highlight-color: #FDFDFD;
scrollbar-3dlight-color: #FDFDFD;
scrollbar-darkshadow-color: #FDFDFD;
scrollbar-shadow-color:#FDFDFD;
}




and to the about section

    TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE TEXT HERE



but it only show;s up in the about section and i want it int eh quilts part of my layout
This is the code that adds a scroll to a section:
overflow: auto; overflow-x: hidden;

Ok so you added that to the #about right.

BUT the coding works like this:
if you want a NEW section (#about ol)
AND if you want a scroll in the #about you cant
position that section (#about) using position: absolute or relative.

I still see you have position: absolute; in your #about.
Take that out or the new section wont show up!
-_Th3_ShiN_-'s avatar
  • 100
  • 200
  • 200
but what does my about section scroll ahve to do with my quilts section
[x-Shin-x]
but what does my about section scroll ahve to do with my quilts section


It does if you position the #about using absolute since
everything in the about then stays inside the scrolls.
It doesnt however if you position the #about using
margins (such as margin-left and margin-top) thats just
how the code works...
-_Th3_ShiN_-'s avatar
  • 100
  • 200
  • 200
plysch
[x-Shin-x]
but what does my about section scroll ahve to do with my quilts section


It does if you position the #about using absolute since
everything in the about then stays inside the scrolls.
It doesnt however if you position the #about using
margins (such as margin-left and margin-top) thats just
how the code works...
User ImageShinjitsu wa Itsumo Hitotsu
k now you totaly lost me sweatdrop nvm srry
User ImageQuesting for a NiteMare Scarf
[x-Shin-x]
plysch
[x-Shin-x]
but what does my about section scroll ahve to do with my quilts section


It does if you position the #about using absolute since
everything in the about then stays inside the scrolls.
It doesnt however if you position the #about using
margins (such as margin-left and margin-top) thats just
how the code works...
User ImageShinjitsu wa Itsumo Hitotsu
k now you totaly lost me sweatdrop nvm srry
User ImageQuesting for a NiteMare Scarf


Well thats why I asked if you made your code since
you used margin-top in some places to position things.
I thought you understood what the codes you added did.... surprised
I know this part of css may seem hard to understand though. sweatdrop

EDIT: I mean I saw margin-bottom in your code....
whee
-_Th3_ShiN_-'s avatar
  • 100
  • 200
  • 200
plysch
[x-Shin-x]
plysch
[x-Shin-x]
but what does my about section scroll ahve to do with my quilts section


It does if you position the #about using absolute since
everything in the about then stays inside the scrolls.
It doesnt however if you position the #about using
margins (such as margin-left and margin-top) thats just
how the code works...
User ImageShinjitsu wa Itsumo Hitotsu
k now you totaly lost me sweatdrop nvm srry
User ImageQuesting for a NiteMare Scarf


Well thats why I asked if you made your code since
you used margin-top in some places to position things.
I thought you understood what the codes you added did.... surprised
I know this part of css may seem hard to understand though. sweatdrop
User ImageShinjitsu wa Itsumo Hitotsu
i made it but this i dont get XD
User ImageQuesting for a NiteMare Scarf
Ok so what is it you dont get? sweatdrop

This is your about-code:


#about
{position: relative; overflow: auto; overflow-x: hidden; height: 215px; width: 320px;
font-size: 10px;
background:no-repeat top left;
border: none;
margin-bottom: 10px;
width 300px;
left: 0px;
top: -650px;
left: 100px;
overflow:auto; overflow-x: hidden;
scrollbar-arrow-color: #FDFDFD;
scrollbar-track-color: #FDFDFD;
scrollbar-face-color: #FDFDFD;
scrollbar-highlight-color: #FDFDFD;
scrollbar-3dlight-color: #FDFDFD;
scrollbar-darkshadow-color: #FDFDFD;
scrollbar-shadow-color:#FDFDFD;
}

You want a scroll in the #about-section?
You want to add a new custom section for your quilt?
If you said yes to both of those questions then:
What I made bold you cant have there.

Theres also some other things Im wondering about.
Why do you this code in two places in that code:
overflow:auto; overflow-x: hidden;
and also:
left: 0px;
and ALSO:
left: 100px;

Also when I scroll down in your about.. I dont see any patches?
Where is your quilt you say?

Quick Reply

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