Before you ask please READ THIS

Images in normal size

edited December 2012 in Spaceship Posts: 14
How can I show the images from albums in the original image size and not scaled to width height or total background?

Comments

  • AirAir
    Posts: 10,970
    Hello.

    This is not possible, as script which runs slideshow also resizes image so they are not bigger then available space. So without serious code edit it is not possible.

    With regards.
  • Posts: 14
    I now scaled the images by using CSS. Customer is happy with it
  • Would love to know how/where you added that css. I'm not liking how pixelated some of my images look fullscreen.

    thanks
  • edited January 2013 Posts: 14
    in the child theme style.css I added this:
    ul#supersized li a img{
    -webkit-transform: scale(0.7); /* Saf3.1+, Chrome */
    -moz-transform: scale(0.7); /* FF3.5+ */
    -ms-transform: scale(0.8); /* IE9 */
    -o-transform: scale(0.7); /* Opera 10.5+ */
    transform: scale(0.7);

    /* IE8+ - must be on one line, unfortunately */
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.7, M12=0, M21=0, M22=0.7, SizingMethod='auto expand')";

    /* IE6 and 7 */
    filter: progid:DXImageTransform.Microsoft.Matrix(
    M11=0.7,
    M12=0,
    M21=0,
    M22=0.7,
    SizingMethod='auto expand');

    }
    Post edited by Air on
  • dude - thank you so much. That is EXACTLY what i was looking for.

  • Posts: 14
    Your welcome
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!