• Resolved pstapf

    (@pstapf)


    Hello,

    i added this CSS:

    .strong-view.default .testimonial-image img {
    border: none;
    border-radius: 0px;
    padding: 0;
    }

    Im still having the white borders around the images, how do i fix that?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @pstapf,

    Please add this code in Appearance > Customize > Additional CSS:

    .strong-view.wpmtst-default .wpmtst-testimonial-image img {
    	padding: 0;
    	border: none;
    	box-shadow: none;
    }

    Warmly,
    Mihaela

    Thread Starter pstapf

    (@pstapf)

    Hello Mihaela,

    thanks for your reply.

    Unfortunetaly the white borders are still there.

    The full css im using for the page is:

    /* default */
    
    .strong-view.wpmtst-default .wpmtst-testimonial-image img {
    	padding: 0;
    	border: none;
    	box-shadow: none;
    }
    
    .strong-view.default .testimonial-heading{
    	font-size: 0.8cm;
    	padding-bottom: 0.5cm;
    }
    
    .strong-view.default .testimonial-company{
    	padding-top:;
    	align-self:bottom;
    	position: absolute;
    	bottom: 0.6cm;
    	right: 0.55cm
    }
    .strong-view.default .testimonial-name{
    	padding-top:;
    	align-self:bottom;
    	position: absolute;
    	bottom: 1.3cm;
    	right: 0.55cm
    }
    
    .strong-view.default .testimonial-content{
    	padding-bottom: 1.6cm;
    }
    .strong-view.default .testimonial-inner {hyphens: auto}

    Please try this code instead:

    .strong-view.wpmtst-default .wpmtst-testimonial-image img {
    	padding: 0 !important;
    	border: none !important;
    	box-shadow: none;
    }
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘White Borders around Image’ is closed to new replies.