This topic was marked solved by its starter, on February 6th, 2017, 11:03 PM
[CSS] Quote not aligning left in center block

CerealGuy

  • Posts: 343
[CSS] Quote not aligning left in center block
« on December 19th, 2016, 04:28 PM »Last edited on January 15th, 2017, 03:02 PM
Bug:
When centering a quote block, the header text and icon get's centered too. Should be still left aligned.
Because of that the icon is also behind the text.

Example:
foo
Quote from bar
lorem ipsum

Fix:
Forcing text-align: left for bbc_quote->header
Code: [Select]
.bbc_quote>header {
    padding: 2px 2px 2px 24px;
    text-align: left;
}

PR: https://github.com/Wedge/wedge/pull/47