Before you ask please READ THIS

Overcrouded Screen in Mobiles

edited January 2013 in Hypershot Posts: 39
Hi

In my iphone the left and right arrows are on top of the images ( a little to big) and the icon numbers also fall on top of the image. The problem is that I have some albums with 25 images and then almos all of the screen is full of items that cover the images. Is it possible to make the numbers dissapear and make the arrows smaller.

Thanks
Gonzalo
la foto3.PNG
640 x 960 - 113K

Comments

  • AirAir
    Posts: 10,970
    Hello,

    If you wish to make changes only on small screens use this custom CSS

    @media only screen and (max-width: 650px) {
    /* Hide numbers */
    #slide-list {
    display: none !important;
    }
    }
    I messed for a bit with giving you CSS for resizing arrows, but this just ended up tricky and takes not nice side effects, so there wont be solution.

    With regards.
  • Air

    Thanks The code worked fine

    Could it be possible to aling arrows vertically on top or bottom?

    Thanks
    Gonzalo
  • AirAir
    Posts: 10,970
    To push them to top you could use this

    @media only screen and (max-width: 650px) {
    html.touch .prev-parent, html.touch .next-parent {
    margin-top: 0;
    top: 0;
    }
    }
    With regards.
  • Air

    Yes it did.

    Thanks
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!