• I have set Table 1: B4 to 6 pixels, Table III A2 to Background=White and Border=Black.

    This gives the appearance of a white frame around individual images inserted into posts using %%wppa%% %%photo=XXXX%% %%size=XXX%% so that they look like real printed photos with a white border.

    What i would like to be able to do is increase the width of the black border around the white frame on just the bottom and right hand side so as to give the appearance of a slight shadow and create a 3D look. I cannot work out where or how I could do this using CSS. Is this possible and if so how?

    https://www.ads-software.com/extend/plugins/wp-photo-album-plus/

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

    (@opajaap)

    I did such a thing with box-shadow (see https://wppa.opajaap.nl):

    .wppa-box {
    -moz-box-shadow: 3px 3px 4px #669933;
    -webkit-box-shadow: 3px 3px 4px #669933;
    box-shadow: 3px 3px 4px #669933;
    filter:progid:DXImageTransform.Microsoft.Shadow(color='#669933',direction='135',strength='4');
    }

    Of course a different color and maybe not on .wppa-box but on .wppa-sphoto

    Thread Starter tonyswash

    (@tonyswash)

    Sorry – a basic question.

    Where is the .wppa-sphoto CSS located?

    I looked in the wppa-style.css file and couldn’t see it.

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    Doesn’t matter where you put it, you can add it in wppa-style.css. If you make a copy of wppa-style.css and put it in the theme directory, that copy will be used and it will not be overwritten at an update of wppa+. (But it will be deleted at an upgrade of the theme). See: https://wppa.opajaap.nl/customizing-wppa/modifying-css/

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: WP Photo Album Plus] Border CSS question’ is closed to new replies.