jquery - Is it possible to display a single image bigger when our website is viewed on a mobile? -
we have login button showing @ top right of our page "customer login".
is possible make image bigger only when site viewed on mobile phone?
clearly in ideal world we'd have whole mobile version of our site created, unfeasible @ moment.
if helps our site can viewed - here
you can use media queries that:
@media (max-width: 768px){ /* ipad , below */ img{width: 100%;max-width: 100%;} }
Comments
Post a Comment