Div Layout - Mood & Status? |
Div Layout - Mood & Status? |
![]()
Post
#1
|
|
Newbie ![]() Group: Member Posts: 5 Joined: Dec 2008 Member No: 705,965 ![]() |
Hey folks,
Working with Myspace DIV layouts for the first time, and I'm not entirely sure 100% as to what I'm doing, haha. I've got the layout up and running, but was looking to play around with a few more options and such. I would like to find a way to add my default picture and my current status and mood. Is there a way that I could do that? I have HTML and CSS knowledge, but battling with applying it to Myspace right now! ![]() |
|
|
![]() |
![]()
Post
#2
|
|
Member ![]() ![]() Group: Member Posts: 25 Joined: Nov 2008 Member No: 700,955 ![]() |
You could try this I'm not sure if it will work:
CODE <style> .text{visiblity:visible;} .ctl00_cpMain_ctl01_UserBasicInformation1_hlDefaultImage{position:absolute; top:; left:; overflow:auto;} </style> and/or CODE <style> .Table2{position:absolute; top:; left:; overflow:auto;} </style> Something like that maybe. I suggest downloading FireBug for Firefox and researching from there I don't feel like getting into detail right now sorry :/ |
|
|
![]()
Post
#3
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Try this code to move the default picture and mood around:
CODE <style> .profileinfo {visibility:visible; position:absolute; left:50%; top:500px; margin-left:-500px; z-index:9; background:none;} .profileInfo td td.text {visibility:hidden;} .profileInfo td.text a img {visibility:visible;} .profileInfo td td {visibility:visible;} .profileinfo table tr:last-child, .nametext {display:none;} .profileinfo table td {border:none; line-height:0px;} </style> Just change the top and margin-left values according to where you want them. Now, what do you mean by status? |
|
|
![]()
Post
#4
|
|
Newbie ![]() Group: Member Posts: 5 Joined: Dec 2008 Member No: 705,965 ![]() |
Try this code to move the default picture and mood around: CODE <style> .profileinfo {visibility:visible; position:absolute; left:50%; top:500px; margin-left:-500px; z-index:9; background:none;} .profileInfo td td.text {visibility:hidden;} .profileInfo td.text a img {visibility:visible;} .profileInfo td td {visibility:visible;} .profileinfo table tr:last-child, .nametext {display:none;} .profileinfo table td {border:none; line-height:0px;} </style> Just change the top and margin-left values according to where you want them. Now, what do you mean by status? I'll give that one a try. The 'status' is the thing paired with the mood, the one that used to be the "is in your extended network" area. |
|
|
![]()
Post
#5
|
|
Newbie ![]() Group: Member Posts: 5 Joined: Dec 2008 Member No: 705,965 ![]() |
Great, I'll definitely give it a shot when I get home this evening. I'll let you know how it works out.
I appreciate the replies! ![]() |
|
|
![]()
Post
#6
|
|
Newbie ![]() Group: Member Posts: 5 Joined: Dec 2008 Member No: 705,965 ![]() |
I just played around with it a bit, and it shows the default picture and mood, but the status line is still missing. I downloaded FireBug like the other posted suggested, but couldn't find anything.
|
|
|
![]()
Post
#7
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Try this code instead:
CODE <style> .searchMonkey-standardUserStatus {position:absolute; left:50%; top:250px; margin-left:-500px; z-index:9; background:none;} .profileinfo {position:absolute; left:50%; top:500px; margin-left:-500px; z-index:9; background:none;} .profileInfo td td.text {visibility:hidden;} .profileInfo td.text a img {visibility:visible;} .profileInfo td td {visibility:visible;} .profileinfo table tr:last-child, .nametext {display:none;} .profileinfo table td {border:none; line-height:0px;} </style> The first line should move the status. Again, just mess around with the values. |
|
|
![]()
Post
#8
|
|
Newbie ![]() Group: Member Posts: 5 Joined: Dec 2008 Member No: 705,965 ![]() |
Try this code instead: CODE <style> .searchMonkey-standardUserStatus {position:absolute; left:50%; top:250px; margin-left:-500px; z-index:9; background:none;} .profileinfo {position:absolute; left:50%; top:500px; margin-left:-500px; z-index:9; background:none;} .profileInfo td td.text {visibility:hidden;} .profileInfo td.text a img {visibility:visible;} .profileInfo td td {visibility:visible;} .profileinfo table tr:last-child, .nametext {display:none;} .profileinfo table td {border:none; line-height:0px;} </style> The first line should move the status. Again, just mess around with the values. Worked like a charm! Thanks a lot for all your help! Cheers, mate! ![]() |
|
|
![]()
Post
#9
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
No problem. Topic closed & moved.
|
|
|
![]() ![]() |