Caption sliding up into images when viewed on mobile phone screen vertical
-
I had a problem with my caption displaying up in the bottom of my slider images when viewed on a Droid Razr screen viewed vertically. I am using the original Cyclone Slider with the responsive template saved in my own template folder. The caption views correctly in all other resolutions and orientations. I fought with my CSS for quite some time with no luck in making the caption show up correctly.
Here is the quite simple solution I came up with.
I changed the minimum resolution in my media query…
@media (min-width: 380px) and (max-width: 979px)
to@media (min-width: 360px) and (max-width: 979px)
. That did the trick. I was lulled into thinking that since the screen resolution of my Droid Razr is supposed to be 540 x 960, I was within the boundaries of the media query. Obviously I was not. Changing min-width from 380 to 360 made my CSS changes begin to work as they should on my Droid phone.Hope this explanation helps anyone with a similar problem.
- The topic ‘Caption sliding up into images when viewed on mobile phone screen vertical’ is closed to new replies.