Hi,
I do have a small problem with understanding the new font section in theme panel:
1.) Where can I define the default font for the theme?
2.) Where can I define font and size for lists in posts (
- …
). For some reason the changes in theme panel do not work for my lists: http://www.brettspiele-magazin.de/spinderella/
Thanks for your help.
julingn
Hi,
The font-family that you have set on body it is applying also on text or list from text block – http://screencast.com/t/Pq6Qmw88be – http://screencast.com/t/96fTxxqy
If you want to change the the font size for your lists in pages using a text block you will have to use custom css in Theme Panel > Custom Css: http://screencast.com/t/f25FdVZzi8k
.wpb_text_column li {
font-size: 20px;
line-height: 28px;
}
Also if you use a list in post content – http://screencast.com/t/tv0A6hxioc
.td-post-content li {
font-size: 20px;
}
Thanks!
Hi Alin,
thanks for the fast reply. Should the lists in posts also apply to the font size selected in the theme font for body? I just want the lists to be displayed in the same size as the rest of the content.
My posts use font size 13px, but my lists are using 15px and I just don’t know why. You introduced sooo many font settings in theme panel. Do I really have to use custom css to make the lists the same font size then the rest of the post?
regards,
julingn
Hi,
Unfortunately for the moment you will have to use custom css, I added this on our list and it will be added an option on Theme Fonts also for list on posts.
.td-post-content li {
font-size: 13px;
}
Thanks!