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

    (@opajaap)

    Set Table IV-B1 ( v-align ) to center in stead of fit

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    Box shadow must be done in css. Example from my demo site:

    #content img {
    	max-width: 1024px;
    	-moz-box-shadow: 4px 4px 4px #bbdd99;
    	-webkit-box-shadow: 4px 4px 4px #bbdd99;
    	box-shadow: 4px 4px 4px #bbdd99;
    	padding:5px;
    	filter:progid:DXImageTransform.Microsoft.Shadow(color='#bbdd99',direction='135',strength='5');
    }
    .widget-area img {
    
    	-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');
    }
    .widget-container, .wp-caption {
    	background-color: #eef7e6;
    	padding: 4px;
    	overflow: hidden;
    	-moz-border-radius: 6px;
    	-webkit-border-radius: 6px;
    	border-radius: 6px;
    
    	-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');
    
    }
    .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');
    
    }
    #content .wppa-box .no-shadow, .widget-container .slide-frame, .widget-area .slide-frame img {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: nnone;
    filter:progid:DXImageTransform.Microsoft.Shadow(color='#669933',direction='135',strength='0');
    }

    Thread Starter thegroomingtable

    (@thegroomingtable)

    I had to set the align to –none– but it left a huge gap between the slideshow and the rest of the body. Too much trouble.. I think i’ll go without the slideshow.. haha! thanks for your help!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to prevent rest of page from changing together with slideshow’ is closed to new replies.