I would like to modify the appearance of the quote/blockquote on mobile, for it to be similar to the one I have on desktop.
For this page, on desktop, it appears like this:

On mobile, it appears like this:

On mobile, it looks large and bolded in a way that I don’t want, and that doesn’t distinguish the text enough from actual bolded text. In the Theme Panel “Mobile Theme > Theme Fonts > Post Content” section, changing the quote font settings did not seem to change anything on the Android internet browser or on iOS. I would appreciate help.
Hello @Paradoxer!
If you use Mobile theme, then please try to change the size of your blockquote from the Mobile Editor: https://forum.tagdiv.com/mobile-theme-introduction/
Thank you!
Hello,
What I want to do is apply a general/universal modifications to how blockquotes appear on the mobile theme. Is that possible? I thought that the “mobile editor” was the section I could access in the Theme Panel, however that does not seem to be the case. How do I apply a generalized change for any future blockquotes on my website pages on mobile?
So that’s what I was doing before, but the problem is that for the mobile theme, the only things that change are the “Font family” and the “Style.” The font still stays all bolded in blockquotes. What I would like is if I bold certain words in a blockquote, it doesn’t resemble the rest of the text like it does now on mobile. Is that possible?
Hello @paradoxer!
Please provide some screenshots/video, so I can understand exactly what you mean.
Thank you!
It’s the difference between how it looks on desktop:

Versus how it looks on mobile:

On desktop, only the word “Hirata” is explicitly bolded, emphasizing it compared to the rest. On mobile, everything is bolded, lowering the emphasis on “Hirata.” I want the mobile blockquote to look like the one on desktop, particularly with not everything being bolded like it is.
Hi Paradoxer,
The content is bolded because there is a 600 bold set on it. I think that you have some custom css set in the theme panel https://i.imgur.com/yCfrL9x.png and this need to me changed from font-weight: 600 !important; to font-weight: 400 !important;
Or you can use this custom css for mobile theme:
body .td-post-content blockquote p {
font-weight: 400 !important;
}
Set the code in the theme panel > custom code> css.
I hope this will help you!
Thank you!