I'm trying to get my profile to scroll horizontally within the iPod screen (see profile) but I can't figure out how to do it. Is there a code to completely get rid of/block subeta's column coding? Would a div overlay work?
I'm also trying to get images to float above the entire thing but they keep getting trapped in the scroll area >< Any ideas?
I can show you the code to if it will help^^
That happened to me too. I'm pretty sure it's because you have that specific column absolutely positioned. When I moved my images to a separate column (one that wasn't positioned), it fixed it. :)
Do you mean, like, instead of all of the sections of the profile being stacked on top of one another, you want them beside each other, so it scrolls sideways instead of vertically? Hmm. Have you tried relative/absolute positioning on all the different sections separately? I've never done it so not sure what the results would be but I believe it would work.
Yes that's exactly what I mean^^ I don't know how to code all the sections separately. It sounds like it's what I'm looking for but how do I stop the sections from staying in columns? If I can figure those two things out I think I can get it.
Like, for example:
{
position: absolute;
top: 100px;
left: 50px;
}
{ position: absolute; top: 100px; left: 350px; }
That would put your Profile section and your Blank section beside each other. All of the different sections have different IDs that you can find out using View Source. :)