• Resolved kepenner

    (@kepenner)


    Try as I might, I can’t open the ‘Filmstrip Navigation Off’ thread to post this reply to vanneumann there, hence this new thread. (Tried with explorer, chrome, firefox…) But I got an email saying you had the same problem as I did with the thumbnails in the filmstrip moving way out of position. Anyway, the way I solved the problem was to add the following lines at the very bottom of the CSS style sheet in my theme. Then the filmstrip navigation pictures went back to their normal position and everything seemed to work just fine:

    #filmwindow-1 {
    margin-top: -1px !important;
    }

    A slightly better solution would be to create a child theme and put the lines above in its style sheet. That way, if your theme updates, you don’t have to worry about the above lines disappearing.

    http://wordpress.org/extend/plugins/wp-photo-album-plus/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Jacob N. Breetvelt

    (@opajaap)

    Thanx! I will investiage on this, and when harmless put it in the standard wppa+ code.

    Thread Starter kepenner

    (@kepenner)

    I’m not sure what you mean by align the box…
    You control the actual filmstrip by using the code above. So, for example if you wanted to change the actual filmstrip’s width to 900px, you would add the following code to your theme’s style sheet:
    #filmwindow-1{
    width:900px;
    }

    If you wanted to change the width of the box which contains the filmstrip, then you would need to reference the following:
    .wppa-box{
    width:900px;
    }
    Of course if you start monkeying around with the width you will have to change the margin-left property to center it again etc.
    Good luck.

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    Ho ho ho boys.. please do not full around with that!!!
    The box width is set in Table I-A1

    The problem will be fixed in the next version (4.7.4), if you can’t wait, here is how to fix it properly:

    Edit file wppa-slideshow.php

    Change line 307 from $marg = '32'; to $marg = '42';
    Change line 315 from $marg = '16'; to $marg = '21';
    Change line 346 from:

    $wppa['out'] .= wppa_nltab().'<div id="filmwindow-'.$wppa['master_occur'].'" class="filmwindow" style="'.$IE6.' display: block; height:'.$height.'px; margin: 0 0 0 '.$marg.'px; overflow:hidden;">';

    to:

    $wppa['out'] .= wppa_nltab().'<div id="filmwindow-'.$wppa['master_occur'].'" class="filmwindow" style="'.$IE6.' display: block; height:'.$height.'px; margin: -1px 0 0 '.$marg.'px; overflow:hidden;">';

    i.e.: margin: 0 0 0 '.$marg.'px; to margin: -1px 0 0 '.$marg.'px;

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    Fixed 4.7.4

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: WP Photo Album Plus] Navigation Off’ is closed to new replies.