• I have been struggling with removing the drop cap in the first letter of the first word on my pages in the Book Lite theme. I do not want the first letter to be so much larger than the rest of the text. I also would like the spacing and text appearance of the first line to be uniform with the rest of the text.

    I have read a lot of posts about how to fix this in Custom CSS (which I now have because I recently upgraded to wordpress.com premium), but either it hasn’t been working right, or I’m doing something wrong- I have come close to correcting it by using a code, but then the first letter will be the right size, but will still float slightly above the rest of the letters in the line.

    Does anyone know how to do this in the HTML section? Maybe I need to wrap the first letter of the first word with a code? I would greatly appreciate any help.

Viewing 1 replies (of 1 total)
  • Thread Starter Amy04

    (@amy04)

    The CSS code I use that makes the first letter the same size as the others but still floats slightly above the rest of the letters is this:

    .entry-content > p:first-child:first-line {
    letter-spacing: normal;
    font-variant: normal;
    }

    .format-standard .entry-content > p:first-child:first-letter,
    .page .entry-content > p:first-child:first-letter {
    color: inherit;
    float: none;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Remove Drop Cap in First Letter of First Word on Book Lite Theme Page’ is closed to new replies.