If Image not working chck here : https://imgur.com/g7mvMtl
Hi,
The size of blockquotes can be adjusted from theme panel if you are using classic posts style -> https://i.imgur.com/3kk9x7L.png or with tagDiv Composer if you are using a single post template -> https://i.imgur.com/J6RWbk0.jpg
Thank you!
I dont want to change the size, I just want to change the quote style to “QUote Box Center” for all post. Is there any way to do that?
Hi,
If you want to apply it for all post you can do it using a custom css like this one -> https://i.imgur.com/UpSpHN4.png
.single blockquote.td_quote {
margin: 0 0 29px 0;
background-color: #FCFCFC;
border-left: 2px solid #4db2ec;
padding: 15px 23px 16px 23px;
position: relative;
top: 6px;
clear: both;
}
.single blockquote.td_quote p {
font-family: 'Open Sans', arial, sans-serif;
color: #777;
font-size: 13px;
line-height: 21px;
margin: 0;
text-transform: none;
}
The code need to be set in theme panel> custom code> custom css.
Thank you!
Hi,
Please try this custom css -> https://i.imgur.com/ywhpaAm.png
.single blockquote.td_quote, .single blockquote.wp-block-quote {
margin: 0 0 29px 0;
background-color: #FCFCFC;
border-left: 2px solid #4db2ec;
padding: 15px 23px 16px 23px;
position: relative;
top: 6px;
clear: both;
}
.single blockquote.td_quote p, .single blockquote.wp-block-quote p{
font-family: 'Open Sans', arial, sans-serif;
color: #777;
font-size: 13px;
line-height: 21px;
margin: 0;
text-transform: none;
}
Also if you want you can use only this one -> https://i.imgur.com/frljd03.png
The code need to be set in theme panel> custom code> custom css.
Hope this will help you better!
Thank you!