Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WordPress.tv: Show hero video thumbnail images at full width on narrow screens #316

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions wordpress.tv/public_html/wp-content/themes/wptv2/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2076,12 +2076,11 @@ h5 {
.wptv-hero .secondary-videos li {
font-size: 13px;
margin: 0 auto 23px;
max-width: 130px;
}

.wptv-hero .secondary-videos .video-thumbnail img {
width: 130px;
height: 75px;
width: 100%;
height: auto;
}

.wptv-hero .secondary-videos a:hover img {
Expand Down Expand Up @@ -2512,6 +2511,11 @@ h3#comments {
left: 0;
position: absolute;
}

.wptv-hero .secondary-videos .video-thumbnail img {
width: 130px;
height: 75px;
}
}

@media screen and ( min-width: 500px ) {
Expand Down