Positioning / Player not playing, shoould be an easy fix, just confused |
Positioning / Player not playing, shoould be an easy fix, just confused |
![]()
Post
#1
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 38 Joined: Mar 2008 Member No: 634,385 ![]() |
For the heck of it, I'm trying to rebuild this page.
here's my page: www.myspace.com/avianember But here are my problems: 1. For some reason, the music player doesn't let you click on it, like there's a clear layer over it or something. 2. Comments are supposed to be centered. 3. Friends should be lined up below "events" 4. I can't figure out how to get rid of the huge gap between the bottom of "events" and my friends/comments. Any help would be super appreciated. If possible, code it out for me :D Thanks!! |
|
|
![]() |
![]()
Post
#2
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Look for this bit:
CODE object { position: absolute; top: 1021px; left: 50%; margin-left: -35px } Give it a z-index value, like this: CODE object { position: absolute; top: 1021px; left: 50%; margin-left: -35px z-index: 9; } To center the comments, look for this: CODE .friendsComments b { display: block; width: 100%; font-weight: normal; font-size: 11px; margin-bottom: 10px; text-transform: uppercase; } Remove the fourth line containing the width attribute and see if that fixes it. If not, try replacing the value with 850px. As for the rest, it'll be easier for me to help if you post all the codes you're using so I can test them myself. |
|
|
![]() ![]() |