Hello @adrianonline,
Thank you for writing in! The reason why you’re seeing lists have a smaller size is because the CSS provided earlier by @Prasant is only targeting p
elements inside you .entry-content
element. To achieve the look you want, I would do this instead:
- Go to Theme Options and set your root font size and content font size to
16px
. This will increase the heading font sizes as you mentioned, but it will also ensure that all elements will be sized accurately and you won’t have any that you need to specify over and over again using specific selectors.
- Next, you can use some custom CSS to target each level of heading in your standard content and resize those as needed. Remember that we also have helper classes that go with each heading level, so you would want to do something like the following:
h1, .h1 {
font-size: 2.5rem;
}
h2, .h2 {
font-size: 2rem;
}
/* repeat for each level as desired */
This will give you the cleanest implementation of what you want. Cheers!