Matthew, you write: >> I almost have this how I want it. I would like to not have the space to the >> right of each testimonial. Anyone know how to fix this?
>> http://ecoitsf.com/test/testimonials.shtml >> blockquote { >> >> color: #BBB; >> color:#333; >> font-size: .8em; >> font-style:italic; >> margin-top:0px; >> margin-left:-5px; >> line-height: 1.3em; >> } My Chrome browser is adding "margin: 1em 40px;" to your style sheet because you haven't specified a right or bottom margin. Add the following line to your blockquote statement: margin-right: 12px; Or just have one line for the margins: margin: 0 12px 16px -5px; (Why do you have 2 colors in your statement?) Regards, Beth Lee www.bethleedesign.com ______________________________________________________________________ css-discuss [[email protected]] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
