default pic, mood comments.. |
default pic, mood comments.. |
Oct 9 2008, 12:45 AM
Post
#1
|
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 84 Joined: Mar 2007 Member No: 511,742 |
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)
|
|
|
|
![]() |
Oct 9 2008, 10:08 PM
Post
#2
|
|
![]() Better than Firefly; aQuafly ![]() ![]() ![]() Group: Official Designer Posts: 75 Joined: Oct 2008 Member No: 689,363 |
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! |
|
|
|
Oct 10 2008, 08:17 PM
Post
#3
|
|
![]() Better than Firefly; aQuafly ![]() ![]() ![]() Group: Official Designer Posts: 75 Joined: Oct 2008 Member No: 689,363 |
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 |
|
|
|
Oct 11 2008, 05:01 AM
Post
#4
|
|
|
Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 |
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. |
|
|
|
![]() ![]() |