Welcome to Gaia! ::


OG Noob

11,900 Points
  • Peoplewatcher 100
  • Invisibility 100
  • Generous 100
Alright, so if you view my profile. you can see that my media scrolls up when you hover on it.
Now I want to do a similar thing with my wishlist.
BUT, I want it to scroll out from behind the about me section.
So I want to have a part of it sticking from out of the left side of my about, and scroll straight to the left when you hover on it.

Can anyone help me?

OG Noob

11,900 Points
  • Peoplewatcher 100
  • Invisibility 100
  • Generous 100

Saxy Coder

  1. Add a Wishlist panel
  2. Rotate the header of the Wishlist if you want it to be aligned to the left side that "peeks out" or whatever
  3. Position the wishlist under your About panel
    (Your About panel already has a z-index, so your wishlist will layer under it. Optionally, you can assign a lesser z-index to the Wishlist as well)
  4. Target #id_wishlist:hover and either expand its width or position it closer to the left than the un-hovered state
  5. Do whatever fine-tuning you want, add some times for transitions, etc.

P.S. Removing the "Gaiaonline" logo from the top left makes your profile worthy of reporting -- you might want to change that

OG Noob

11,900 Points
  • Peoplewatcher 100
  • Invisibility 100
  • Generous 100
Lady Saxophone
  1. Add a Wishlist panel
  2. Rotate the header of the Wishlist if you want it to be aligned to the left side that "peeks out" or whatever
  3. Position the wishlist under your About panel
    (Your About panel already has a z-index, so your wishlist will layer under it. Optionally, you can assign a lesser z-index to the Wishlist as well)
  4. Target #id_wishlist:hover and either expand its width or position it closer to the left than the un-hovered state
  5. Do whatever fine-tuning you want, add some times for transitions, etc.

P.S. Removing the "Gaiaonline" logo from the top left makes your profile worthy of reporting -- you might want to change that


How do I rotate the header?

Saxy Coder

▧▧▧ ♬ ▧▧▧
Kalopsia
How do I rotate the header?
#selector h2{transform: rotate(90deg);}
Sample code ^ You'll have to fill in your selector and maybe change the degree of rotation as you please

▧▧▧▧▧▧▧

OG Noob

11,900 Points
  • Peoplewatcher 100
  • Invisibility 100
  • Generous 100
Lady Saxophone
▧▧▧ ♬ ▧▧▧
Kalopsia
How do I rotate the header?
#selector h2{transform: rotate(90deg);}
Sample code ^ You'll have to fill in your selector and maybe change the degree of rotation as you please

▧▧▧▧▧▧▧


Thank you so much.
And I hope you're proud of me for fixing my header. 4laugh

OG Noob

11,900 Points
  • Peoplewatcher 100
  • Invisibility 100
  • Generous 100
Lady Saxophone
▧▧▧ ♬ ▧▧▧
Kalopsia
How do I rotate the header?
#selector h2{transform: rotate(90deg);}
Sample code ^ You'll have to fill in your selector and maybe change the degree of rotation as you please

▧▧▧▧▧▧▧


Sorry to bother you again.
But I put this as my coding:

#id_wishlist {
-moz-transition: 1s linear;
-o-transition: 1s linear;
-webkit-transition: 1s linear;
top:300px;
color: black;
height: 323px;
left: 700px;
margin: 0px;
overflow-y: visible;
padding: 0px;
position: fixed;
transition: 1s linear;
width: 250px;
}

#id_wishlist h2 {
font-size: 10px;
background-color: white;
text-align: center;
display: block!important;
height: 15px!important;
position: absolute;
width: 250px!important; }

#id_wishlist h2{transform: rotate(90deg)}

#id_wishlist object {height: 323px; width: 250px;}

#id_wishlist:hover {left: 0px;}


And it still doesnt seem to work.

Saxy Coder

▧▧▧ ♬ ▧▧▧
Kalopsia
Sorry to bother you again.
But I put this as my coding:

And it still doesnt seem to work.
Something more like this?
#id_wishlist {
transition: 1s linear all;
top:300px;
color: black;
height: 323px;
left: 700px;
margin: 0px;
overflow-y: visible;
padding: 0px;
position: fixed;
transition: 1s linear;
width: 250px;
}

#id_wishlist h2 {
font-size: 10px;
background-color: white;
text-align: center;
display: block!important;
height: 15px!important;
position: absolute;
left: -140px;
top: 125px;
width: 250px !important;
transform: rotate(90deg);
background: black;}

#id_wishlist:hover {left: 450px;}

▧▧▧▧▧▧▧

OG Noob

11,900 Points
  • Peoplewatcher 100
  • Invisibility 100
  • Generous 100
Lady Saxophone
▧▧▧ ♬ ▧▧▧
Kalopsia
Sorry to bother you again.
But I put this as my coding:

And it still doesnt seem to work.
Something more like this?
#id_wishlist {
transition: 1s linear all;
top:300px;
color: black;
height: 323px;
left: 700px;
margin: 0px;
overflow-y: visible;
padding: 0px;
position: fixed;
transition: 1s linear;
width: 250px;
}

#id_wishlist h2 {
font-size: 10px;
background-color: white;
text-align: center;
display: block!important;
height: 15px!important;
position: absolute;
left: -140px;
top: 125px;
width: 250px !important;
transform: rotate(90deg);
background: black;}

#id_wishlist:hover {left: 450px;}

▧▧▧▧▧▧▧


Okay I used this code, and it helped some things but not all.
Now it scrolls out properly, but the wishlist overflow-y isn't working.
Like you can see all the items sticking out from under the about. It just continues..

And also, when you hover over the about me, it shows all the items underneath Dx

Saxy Coder

▧▧▧ ♬ ▧▧▧
Kalopsia
Okay I used this code, and it helped some things but not all.
Now it scrolls out properly, but the wishlist overflow-y isn't working.
Like you can see all the items sticking out from under the about. It just continues..

And also, when you hover over the about me, it shows all the items underneath Dx
Q u Q ;; You have a lot of different codes going on for your About panel
(And some of them are contradicting each other ... might want to clean things up)
As far as why it's like that though -- you have it so that the background color is transparent and then changes to white upon hovering. Just set to to white all of the time.

For the wishlist, something more like this then?
#id_wishlist {
transition: 1s linear all;
top:300px;
color: black;
height: 300px;
left: 702px;
margin: 0px;
overflow-y: auto;
padding: 0px;
position: fixed;
transition: 1s linear;
width: 250px;
}

#id_wishlist h2 {
font-size: 10px;
background-color: white;
text-align: center;
display: block!important;
height: 15px!important;
position: fixed;
left: 560px;
top: 425px;
width: 250px !important;
transform: rotate(90deg);
background: black;}

#id_wishlist:hover {left: 450px;}

▧▧▧▧▧▧▧

OG Noob

11,900 Points
  • Peoplewatcher 100
  • Invisibility 100
  • Generous 100
Lady Saxophone
▧▧▧ ♬ ▧▧▧
Kalopsia
Okay I used this code, and it helped some things but not all.
Now it scrolls out properly, but the wishlist overflow-y isn't working.
Like you can see all the items sticking out from under the about. It just continues..

And also, when you hover over the about me, it shows all the items underneath Dx
Q u Q ;; You have a lot of different codes going on for your About panel
(And some of them are contradicting each other ... might want to clean things up)
As far as why it's like that though -- you have it so that the background color is transparent and then changes to white upon hovering. Just set to to white all of the time.

For the wishlist, something more like this then?
#id_wishlist {
transition: 1s linear all;
top:300px;
color: black;
height: 300px;
left: 702px;
margin: 0px;
overflow-y: auto;
padding: 0px;
position: fixed;
transition: 1s linear;
width: 250px;
}

#id_wishlist h2 {
font-size: 10px;
background-color: white;
text-align: center;
display: block!important;
height: 15px!important;
position: fixed;
left: 560px;
top: 425px;
width: 250px !important;
transform: rotate(90deg);
background: black;}

#id_wishlist:hover {left: 450px;}

▧▧▧▧▧▧▧


Okay, I fixed the about, but now when you scroll for the wishlist, the header doesnt move with it gonk

Saxy Coder

▧▧▧ ♬ ▧▧▧
Kalopsia
Okay, I fixed the about, but now when you scroll for the wishlist, the header doesnt move with it gonk
Oh, you wanted the header to scroll? o3o
Just use "position: absolute" instead of "position: fixed" for the h2 then, and change the top/left values in order for it to line up.
You might want to add padding to either the left or right side of the panel as well.

▧▧▧▧▧▧▧

OG Noob

11,900 Points
  • Peoplewatcher 100
  • Invisibility 100
  • Generous 100
Lady Saxophone
▧▧▧ ♬ ▧▧▧
Kalopsia
Okay, I fixed the about, but now when you scroll for the wishlist, the header doesnt move with it gonk
Oh, you wanted the header to scroll? o3o
Just use "position: absolute" instead of "position: fixed" for the h2 then, and change the top/left values in order for it to line up.
You might want to add padding to either the left or right side of the panel as well.

▧▧▧▧▧▧▧


No what I mean is,
the wishlist panel itself will scroll out when hovering over the wishlist header.
But the wishlist header is just staying there.
Like I want it to stay attached to the panel, and move out with it. xD

I am sorry that I am a pain :ccc

Saxy Coder

▧▧▧ ♬ ▧▧▧
Kalopsia
No what I mean is,
the wishlist panel itself will scroll out when hovering over the wishlist header.
But the wishlist header is just staying there.
Like I want it to stay attached to the panel, and move out with it. xD

I am sorry that I am a pain :ccc
Like I said, use absolute positioning.
If the header is positioned relatively or absolutely, then it will still be affected by movements/transformations the parent (entire panel) undergoes.
Meanwhile, if the header uses fixed positioning, it will not be affected by changes made to the parent.

▧▧▧▧▧▧▧

Quick Reply

Submit
Manage Your Items
Other Stuff
Get GCash
Offers
Get Items
More Items
Where Everyone Hangs Out
Other Community Areas
Virtual Spaces
Fun Stuff
Gaia's Games
Mini-Games
Play with GCash
Play with Platinum