Moving A Youtube Video Within Myspace Page |
![]() ![]() |
Moving A Youtube Video Within Myspace Page |
Aug 2 2007, 01:25 PM
Post
#1
|
|
|
Member ![]() ![]() Group: Member Posts: 12 Joined: Aug 2007 Member No: 555,079 |
Is there a code that makes a youtube video break outside of myspace frame barriers? If so how? Thank you I appreciate it!
|
|
|
|
Aug 2 2007, 02:11 PM
Post
#2
|
|
![]() ;) ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 9,573 Joined: Feb 2005 Member No: 99,124 |
You could try this:
CODE <style type="text/css"> div.video{ position: absolute; margin-left: ###px; margin-top: ###px; width: ###px; height: ###px; } </style> <div class="video"> PUT YOU TUBE VIDEO CODE HERE </div> You'll need to edit the width and height of the div (replacing the #'s with actual numbers). Margin-left moves the div left or right, and the margin-top moves the div up or down (replace the #'s with real numbers). quick lesson on "position: absolute" top: 0% = moves to top of page top: 50% = moves to middle of page top: 100% = moves to bottem of page left: 0% = moves to left of page left: 50% = moves to center of page left: 100% = moves to right of page margin-left: -15px = moves left 15px margin-left: 15px = moves right 15px margin-top: 45px = moves down 45px margin-top: -45px = moves up 45px |
|
|
|
Aug 3 2007, 01:14 PM
Post
#3
|
|
|
Member ![]() ![]() Group: Member Posts: 12 Joined: Aug 2007 Member No: 555,079 |
Thank you!
|
|
|
|
![]() ![]() |