The title can get clipped if it extends beyond the box for the heading-holder. See the edge of the 'J' in the screenshot:
This is caused by:
heading-holder { overflow: hidden; }
=== Replication steps Visit https://en.m.wikipedia.org/wiki/Jane_and_the_Dragon with Chrome. Note J is clipped. ==== Developer notes The affecting style is located in `skins.minerva.base.styles` module. The problem is that the title is italicized. The following CSS will make it go away:
h1 i {
padding-left: 1px;
}
Alternatively, we can remove the overflow:hdidden on heading-holder