How to change position of testimonials

Im having trouble locating the css tag for the authors name of the testimonials widget. I want to basically give a space between the testimonial and the person who’s being quoted.

Again, Cant thank you guys enough for the help

Hello lRlevolution,

You will need to use CSS :not pseudo selector. Use following code in your style.css,

.testimonial-widget span:not(.testimonial-text) {  
    display: inline-block;  
    margin-top: 10px;  
}

For more details can check http://css-tricks.com/almanac/selectors/n/not/

Thanks,
Manish