biggieuk Posted March 5, 2009 Share Posted March 5, 2009 Hi all, I have a little question about styling quotes on my website. I want to display a left quote image, then the quote text in the middle and a right quote image on the end. I currently have this like so: #quotel{ background:url(../images/content/quote-left.gif) no-repeat; height:32px; width:42px; float:left; } #quoter{ background:url(../images/content/quote-right.gif) no-repeat; height:32px; width:42px; float:right; } The right qutoe image is displayed slightly offline though. Is there a way i can make this into a single class so that i can insert into a <p> tag? thanks very much! Quote Link to comment Share on other sites More sharing options...
rhodesa Posted March 5, 2009 Share Posted March 5, 2009 the 'shortest' way i can see doing it is with two block level elements: <style type="text/css"> .quoteWrapper { background: url(../images/content/quote-left.gif) no-repeat top left; padding: 10px 0 0 10px; } .quote { background: url(../images/content/quote-right.gif) no-repeat bottom right; padding: 0 10px 10px 0; } </style> <div class="quoteWrapper"> <p class="quote"> </p> </div> Quote Link to comment Share on other sites More sharing options...
biggieuk Posted March 5, 2009 Author Share Posted March 5, 2009 Thats excellent, thanks very much for your help. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.