Wordpress responsiveness and content for mobile -


i trying set own wordpress website , have couple of questions.

at moment show background video on homepage. wondering if possible replace video image slideshow on mobile view?

also, how can show different content on desktop/mobile view?

thanks in advance!

this can achieved using media queries.

so example say:

@media (max-width: 800px) {     #video-div {display:none;}     #slideshow-div  {display:block;}  } 

the code above means video not display unless width of browser window equal or more 800px.

@media (min-width: 800px) {     #slideshow-div {display:none;}     #video-div {display:block;} } 

this code saying long screen more 800px wide, slideshow not appear.

you can play around px amount , have many different media queries.


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -