Blockquote in 2.0.4
-
Hi!
Blockquote in 2.0.4 has a larger text-size than the rest of the text. And don’t have any other typical blockquote “effects”. I’m not able to correct the text-size with “Extra CSS”.
Is it possible that the blockquote will be more “normal” blockquote in a future update? Ex a frame, with shadows or something like that? Or how do I correct it myself with “Extra CSS”?
This is not “my strongest suit”, so I’m sorry for the “new beginners question”.
Thanks in advance!
Admin
You can try this code. Copy and paste into Additional CSS:
blockquote { border: 1px solid #eee; padding: 10px 20px; box-shadow: 0 0 3px #f5f5f5; }
Thanks! But I’ve tried different variants of code in additional css, but I’ve not been able to get a normal text-size inside the blockquote. The text-size is bigger than the rest of the text in the article. I’ve not been able to locate where this is defined in the style.css file.
Admin
blockquote p { font-size: 14px; line-height: normal; }
That did the trick with the text-size. I’m not very familiar with CSS as you can see! 😉
1.9.4 of the theme looks like this;
Is it possible to get it like that?
I changed line-high to be the same as the text in the “body”;
blockquote {
border: 1px solid #eee;
padding: 10px 20px;
box-shadow: 0 0 3px #f5f5f5;
}blockquote p {
font-size: 16px;
line-height: 24px;
}Admin
Yes, but it wouldn’t blend in well with the rest of the new styling.
Okay, thanks a’ lot for the help with the CSS-code! 🙂
Viewing 7 posts - 1 through 7 (of 7 total)
- You must be logged in to reply to this topic.