How to resize video lightbox popup in wordpress? [closed]

Check the avada-documentation: https://theme-fusion.com/support/documentation/avada-documentation/ -> Menu -> Extra -> Videos In Lightbox -> How To Set Video Size in Fusion Theme Options How To Set Video Size in Fusion Theme Options Step 1 – Navigate to the Avada > Theme Options tab. Step 2 – Go to the Lightbox tab, and locate the Slideshow Video … Read more

How would I use a media query to make my entire theme responsive or fluid? [closed]

You can use media queries to change the styling per element depending upon specifications. You would have to add these to the bottom of your stylesheet, so that it overwrites your default styles depending upon the screensize This following media-queries template from bootstrap is only based on screen size. You can use more complex media-queries … Read more

Twenty Fourteen responsive CSS

The background colour of the header in Twenty Fourteen is defined in /wp-content/themes/twentyfourteen/style.css at line #847: .site-header { background-color: #000; max-width: 1260px; position: relative; width: 100%; z-index: 4; }

Turning a WP Site Into an iPhone/iPad App [closed]

The best way to do this would be to use CSS3 media quires: @media (max-device-width: 480px) but requires more work. The quick and dirty way to make your WordPress theme app-like would be to add the viewport meta tag to the <head> of your page: <meta name=”viewport” content=”width=device-width, initial-scale=1, maximum-scale=1″> Viewport scales you page to … Read more

Show content based on width?

As you said making a part responsive would be the best way you can choose. Working with screen width is some thing client side, and that’s done by CSS or alternatively by Javascript. If it’s related to css, media queries will do the job: http://www.ibm.com/developerworks/library/wa-cssqueries/index.html and if it’s js, width property of screen object does … Read more