Hi.

I created a block showing random quotes. I works perfectly, and thanks for a wonderful job!

There's just a tiny thing i want to modify, but cant find where to do it. Here it comes.

I want the script to automaticly use the quote sign --> " <-- before and after a quote. How do I do that?

- the reason i want to do it is that I - through css- want the quote sign to be bigger than the quote text itself.

Thanks.

Comments

nancydru’s picture

Status: Active » Postponed (maintainer needs more info)

Well, you might look (Firebug) at how they do blockquotes here on DO.

They look like this.
nancydru’s picture

Status: Postponed (maintainer needs more info) » Closed (works as designed)

No further update

They reformat the blockquote (I think there's a module to do it) to something like this:

<blockquote>
<div class="wbq">They look like this.</div>
</blockquote>

And then the CSS:

blockquote {
  background-image:url(/sites/all/themes/bluebeach/bq-1.png);
  background-position:0 0;
  background-repeat:no-repeat;
  font-style:italic;
  margin-left:4em;
  padding-left:0;
}

blockquote div.wbq {
  background-image:url(/sites/all/themes/bluebeach/bq-2.png);
  background-position:100% 100%;
  background-repeat:no-repeat;
  padding-left:1.25em;
  padding-right:1.25em;
}