PDA

View Full Version : HTML help moving Youtube player up 5 px


Jakub03
01-18-2012, 08:23 PM
The youtube video is between 2 images that hare 335px height and the youtube video is 310px in height. Is there a way to move the video player up like 5px so it wont cause a break in the images?
https://vborg.vbsupport.ru/external/2012/01/40.png

<img src="http://mypokerhub.com/mphimages/home/toprakerace.png" width="900" height="444"><br>

<img src="http://mypokerhub.com/mphimages/home/left2.png" width="194" height="335" >

<iframe width="515
" height="310
" src="http://www.youtube.com/embed/sKsV6oqZW38" frameborder="0" allowfullscreen></iframe>

<img src="http://mypokerhub.com/mphimages/home/right3.png" width="183" height="335" hspace="0" vspace="0">
<img src="http://mypokerhub.com/mphimages/home/bottomrake.png" width="900" height="460">

This is the youtube part
<iframe width="515
" height="310
" src="http://www.youtube.com/embed/sKsV6oqZW38" frameborder="0" allowfullscreen></iframe>

--------------- Added 1326921861 at 1326921861 ---------------

This is the page displaying the code
http://mypokerhub.com/pages.php?pageid=8

HMBeaty
01-18-2012, 08:54 PM
Change this:
<img src="http://mypokerhub.com/mphimages/home/bottomrake.png" width="900" height="460">
To this:
<img src="http://mypokerhub.com/mphimages/home/bottomrake.png" width="900" height="460" style="margin-top:-2px;">

Jakub03
01-18-2012, 10:21 PM
thx il try it now ;)