さて、このサイトをWordPressをベースに現在進行形にて、カスタマイズと更新を繰り返しておりますが、引用文について
blockquoteのタグがありますが、WordPress側ではタグがあるにも関わらず、ダブルクォーテンションとか付かないので、調べたところ
CSSに追加が必要、私は、下記を使用しました。
blockquote:before{ content: "“"; font-size: 1000%; line-height: 0.8em; font-family: 'Times New Roman' ,"MS Pゴシック" ,sans-serif; color: #CCCCCC; position: absolute; left: 0; top: 0; z-index: 2; } blockquote:after{ content: "”"; font-size: 1000%; line-height: 0em; font-family: 'Times New Roman' ,"MS Pゴシック" ,sans-serif; color: #CCCCCC; position: absolute; right: 0; bottom: 0; z-index: 2; }