When we attempt to change the attributes (Size, Line Height, Weight, etc.) of Pull Quotes via Dashboard/Theme Panel/Post Content/Pull Quote – nothing changes after we Save the changes.
Hi,
I’ve made some test and for me the box and pull quote and those are working normally -> http://prntscr.com/oiskgy -> http://prntscr.com/oisl1d just make sure that you do not have a single post template, because then you should edit the single post template for change the pull quote.
Please make sure that you do not have a plugin conflict with untested plugins, please deactivate all non theme, also if you are using child theme, clear all cache and try again.
Thank you!
Hi Catlin:
1. Our Pull quotes were working fine until your most recent Theme Update on 17 July.
2. Plug-in has all been tested with no conflicts.
Can we provide temp admin access for you to check further?
Hi,
If the problem persist, you can send us an email at contact@tagdiv.com and provide admin login, as well as cPanel or FTP if possible. We will take a look. Include a link to this topic in the email.
Thank you!
We have now dispatched Admin Login Credentials to your address above, along with a link to this topic.
SUPPLEMENTAL INFO
Please see the following additonal efforts/info from our end:
1. We have deactivated all plug-ins, tested, and confirmed that NO conflicts exists. We observed after disabling plugins, changing the settings (in the Newspaper theme panel) for: Font Size, Line Height, Font Weight for Pull quotes did not have any effect on the rendered text within a Post.
2. If we use custom CSS, then we can change the rendered page display of Pull Quotes. When using custom CSS (placed in the “Custom Code” section of the Newspaper theme panel) the display of the Pull Quotes can be changed. But… The only thing that still won’t change is the font size; no matter what settings or custom CSS we add, the font still renders as “font-size: 16px”.
We noticed the Pull Quotes were all uppercase (screaming at readers), so I added the code below (to custom CSS), resulting in no more yelling / shouting at people:
text-transform: none !important;
I observed in the rendered text within a Post, when using a developer tool in the web browser, there is a directive as noted below:
element {
font-size: 12pt;
}
It is noted as being injected by the theme as inline. When we edit that value to some other number than 12pt, the size of the Pull Quote font changes. This is something that would require an edit of the theme file to change, and the change would be lost during the next update.
The complete code for the added custom CSS is now:
/* Start – Fix Pull Quote text styling issue */
.td_pull_quote p {
font-size: 12px !important;
font-weight: 400 !important;
line-height: 20px !important;
font-style: italic !important;
text-transform: none !important;
}
/* End – Fix Pull Quote text styling issue */
Maybe there is some other setting we’re not aware of? Maybe there is a different CSS directive we should edit?
