Video Icon

Posted in: Newsmag
Post count: 104

I need to move the icon on the video post. I want to move it away from the very centre, maybe in the top right corner.

Any ideas?

Post count: 23312

Hello ntvweb,

If you want to change the place for your video play icon, please notice that you will have to use a bit of CSS code to move it. Please try the code below and place it in Theme panel->Cusotm CSS area.

The code is ->

.td-video-play-ico>img {
bottom:inherit;
left:inherit;
}

The result you should see here -> http://screencast.com/t/Tf7kyQMX92o

Thanks for your message!

Post count: 104

Thanks very much. That code did move the icon, but it’s not in the top right corner like you screenshot.

http://dev.ntv.ca/

Thanks again, for your help.

Post count: 23312

Hello ntvweb,

Please try the following custom CSS.

The code is ->

.td-video-play-ico {
left:auto;
top:0;
bottom:auto;
right:0;
}
.td-video-play-ico img {
top:0!important;
}
.td-video-play-ico.td-video-small img {
top:0!important;
}

The result you should see here -> http://screencast.com/t/MUJZ1Cf8FnM1

Thanks for your understanding!

Post count: 104

So close …

http://dev.ntv.ca/

Post count: 23312

Hello ntvweb,

If you want to move to the right, without any distance, please change the value for left parameter, using the code below and place it in Theme panel->Custom CSS area.

The code is ->

.td-video-play-ico img {
left:0;
}

The result -> http://screencast.com/t/eIqdzqLl

Thanks for the message!

Post count: 104

Great! I managed to customize it where I wanted it.

THanks so much!

Viewing 7 posts - 1 through 7 (of 7 total)
The forum ‘Newsmag’ is closed to new topics and replies.