I am trying to make a blockquote for my blog. You can see a screenshot of the blockquote I designed here. I tried doing this with CSS, but couldn't get it to work. Next I tried making it out of divs. Finally I tried a combination of both.........
Code:
<style type="text/css">
<!--
#container {
background:#FFFFFFF;
width: 364px;
margin: auto;
}
#top {
width: 364px;
margin: auto;
}
#quoteleft {
float: left;
width: 7px;
background: url(/img/quoteleft.png);
}
#quoteright {
float: right;
width: 3px;
background: url(/img/quoteright.png);
}
#content {
text-align:center;
background:#FFFFFF;
font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
color: #4F3314;
font-size:11px;
margin: auto;
}
#bottom {
clear: both;
width: 364px;
margin: 0;
}
-->
</style>
<div id="container">
<div id="top"><img src="/img/quotetop.png"></div>
<div id="quoteleft"><img src="/img/quoteleft.png"></div>
<div id="quoteright"><img src="/img/quoteright.png"></div>
<div id="content">Sound effects lack punctuation with the one exception of when you intend to seem cartoony. A noise is not a word, and the emphasis and design aesthetic you impart when designing your sound effects should be enough to give it "punch". SFX punctuation may seem trite these days because designers in mainstream media often try to invoke a "comic book feel" with graphics campaigns using affected sound effects. The best example I can think of is recently Gap Kids created a campaign of in-store banners that featured comic book sound effects reminiscent of the 60's Batman TV show - these types of uses are designed to instantly read "comic book" to consumers who really have no idea how actual comic lettering looks.</div>
<div id="bottom"><img src="/img/quotebtm.png"></div>
</div>
This still doesn't work and I've been at it all day. You can see the results of my poor attempt on my test blog here. If anyone could give me a hand with this I would sure appreciate it.
Thanks.
__________________
-- I draw therefore I am...
Last edited by dcloud; 02-26-2010 at 08:12 PM..
|