Comments in flash, Put it in comments secttion |
![]() ![]() |
Comments in flash, Put it in comments secttion |
![]()
Post
#1
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 50 Joined: Aug 2007 Member No: 565,680 ![]() |
<style>
.extendedNetwork { visibility:hidden; height:360px !important } </style> <div class="myDclassExtNet"; style="position:absolute; top:190px; left:50%; margin-left:-40px;"> ENTER ANYTHING YOU WANT HERE. [YOUTUBE VIDEOS, LINKS, IMAGES, ETC.] </div> Is there a way i can change the code properties not hide my Ext. Net. but be able to move what ever i put in the Anything you want here part? the code i want the move is below i want tp put it right Here <embed src='http://mocapoke.com/copetutorials/uploader/comments.swf' flashVars='id=FRIEND_ID_HERE&numComments=NUM_OF_COMMENTS' quality='high' menu='false' wmode='transparent' width='485' height='150'></embed> |
|
|
![]()
Post
#2
|
|
![]() /人◕‿‿◕人\ ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Member Posts: 8,283 Joined: Dec 2007 Member No: 602,927 ![]() |
Could you clarify?
I'm not sure what you're trying to ask. |
|
|
![]()
Post
#3
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 50 Joined: Aug 2007 Member No: 565,680 ![]() |
i want tp put the comments in flash into the comments part of my layout as shown in the picture
i removed the comments i wanted to know if i could take the code i first put and alter it to move the comments in flash |
|
|
![]()
Post
#4
|
|
![]() /人◕‿‿◕人\ ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Member Posts: 8,283 Joined: Dec 2007 Member No: 602,927 ![]() |
Ok now I'm just more confused.
|
|
|
![]()
Post
#5
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 50 Joined: Aug 2007 Member No: 565,680 ![]() |
ok what part are you having trouble understanding?
|
|
|
![]()
Post
#6
|
|
![]() Cornflakes :D ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 4,541 Joined: Dec 2005 Member No: 322,923 ![]() |
Alright, I'm slightly confused but I'm going to answer what I believe you want answered?
Okay with this code that you posted QUOTE <style> .extendedNetwork { visibility:hidden; height:360px !important } </style> To change it, so it does show up and so you can position it where you want it, change it to this: CODE <style> .extendedNetwork { position:absolute; top:200px; left:50%; margin-left:-250px; height:360px !important; } </style> With the changes, we took out the visibility:hidden; which was actually hiding it. We put in positioning values. So to position the extended network, change the Top numbers (200) to move it up and down and you can change the margin-left number (-250) to move it to the right or left. Okay and these flash comments your talking about, I'm guessing your talking about this codE? CODE <embed src='http://mocapoke.com/copetutorials/uploader/comments.swf' flashVars='id=RAWWRRRRR&numComments=######' quality='high' menu='false' wmode='transparent' width='485' height='150'></embed> Now with this code, remove the RAWWRRRRR and change that with your FRIEND ID. Next where you see all the ##### change that to the number of comments that you want to show. Since your deciding to use this code, there isn't any way to customize this just to let you know. Now if you want to take this code, and put it in a div so you can position it where ever you want change the code to this: And change the margin-left and Top numbers to position it where you want it: [code]<div class="comments" style="position: absolute; left:50%; margin-left:-250px; top:180px; width:485px; height:160px; overflow: auto;"> <embed src='http://mocapoke.com/copetutorials/uploader/comments.swf' flashVars='id=FRIEND_ID_HERE&numComments=NUM_OF_COMMENTS' quality='high' menu='false' wmode='transparent' width='485' height='150'></embed></div> |
|
|
![]() ![]() |