Blockquote CSS being problematic
-
This is the blockquote CSS I am using:
blockquote { font-family: Georgia, serif; font-size: 18px; font-style: italic; width: 500px; margin: 0.25em 0; padding: 0.35em 40px; line-height: 1.45; position: relative; color: #53B0D3; } blockquote:before { display: block; padding-left: 10px; content: "\201C"; font-size: 80px; position: absolute; left: -20px; top: -20px; color: #3E68A0; } blockquote cite { color: #999999; font-size: 14px; display: block; margin-top: 5px; } blockquote cite:before { content: "\2014 \2009"; }
These are the problems I’m having:
- I can’t get rid of the vertical line on the left side of my blockquote
- I can’t get the blockquote to center on the page
- Every time I try to make an edit to the blockquote CSS, my actual ” (quotation) symbol transforms into ‘201C’ and my citation text transforms into ‘20142009’
How can I fix these obnoxious problems?
Thank you in advance for any help and relief you can give me!
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Blockquote CSS being problematic’ is closed to new replies.