• Resolved mooie-dingen

    (@mooie-dingen)


    I’m customizing theme Shoreditch, but can’t find the right place in style.css to change the size of Page title / Entry title.

    Any suggestions?
    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • You don’t need to find the spot in the original stylesheet ??

    You can target an element like .entry-title by adding additonal CSS in a couple of ways:

    If you’re building a child theme (this is preferable to modifying the original theme directly, because it protects your edits from being erased in an update), you can put the new CSS right in the child theme style.css file – it doesn’t need all of the original theme’s CSS, just the styles you want to add or change.

    Another (simpler) options is to use the Additional CSS panel in the Customizer (assuming you’re running at least WordPress 4.7) or with something like the Jetpack Plugin using the Custom CSS Module.

    In either case, you can change the size of page titles with this snippet:

    .entry-title {
        font-size: 32px;
    }

    Let me know if I can be of any more help!

    Thread Starter mooie-dingen

    (@mooie-dingen)

    Thanx Chad, that did the trick!

    You’re welcome!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘change size Entry title’ is closed to new replies.