Help - Search - Members - Calendar
Full Version: default pic, mood comments..
Forums > Resource Center > Support Center > Myspace Support > Myspace Resolved Topics
Yuniechan
is there a way to show them in a div class? but not all the comments just the 'displaying xx of xx comments/add comment link'? (but if that isnt possible just comments will do)
Anarchy
I don't know how to hide the Profile Info table without hiding the default picture, or how to hide the "View My: Pics | Videos" text without hiding the Mood. What you can do is just hide them all and recreate them inside a DIV. To show your comments, use my code.
aQuafly
well to show the Info Table in a div you can use this:

CODE
<style>
table.profileInfo
{position:absolute;
top:XXpx;
left:50%;
margin-left:-XXpx;}
</style>


Just fill in the XX's with the proper numbers that fit your div

and then to hide everything except the comment links and such

CODE
<style>
td td td td table {display:none;}
</style>


and then to put the comments in a div use Anarchy's code above^

Hope this helps! thumbsup.gif
Anarchy
^The Profile Info table code works, but she wants only the default pic and mood. I don't know of a way to hide everything in that table except for those.
aQuafly
Here add this code to my previous coding

CODE
<style>

table.profileInfo a, table.profileInfo tr, td {visbility:hidden;}
table.profileInfo tr, table.profileInfo td.text {visibility:hidden; }
table.profileInfo .ImgOnlineNow {display:none;}
table.profileInfo img {visibility:visible;}
span.searchMonkey-mood {visibility:visible;}

</style>


That should work thumbsup.gif
Anarchy
Alright, so here's a compiled version of all those codes. This one is to position the Profile Info table:

CODE
<style>
table.profileInfo
{position:absolute;
top:XXpx;
left:50%;
margin-left:-XXpx;}
</style>

These removes the unwanted sections and comments:

CODE
<style>
table.profileInfo a, table.profileInfo tr, td {visbility:hidden;}
table.profileInfo tr, table.profileInfo td.text {visibility:hidden;}
table.profileInfo .ImgOnlineNow {display:none;}
table.profileInfo img {visibility:visible;}
span.searchMonkey-mood {visibility:visible;}
td td td td table {display:none;}
</style>

Then use my code to position the links for the comments.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.