Hi Benni, how are you?
I would like a custom drop cap to show only inside any single post of my blog, but not on the homepage where there is the collection of all posts.
I tried to add this css in the WP Code snippets but the dropcap appears also in all posts of the homepage. Instead I would like the dropcap to appear only when the user click to read the full article.
<style type="text/css">
.entry-content p:first-child:first-of-type:first-letter {
font-size: 85px;
line-height: 1;
padding-top: 0px;
padding-right: 10px;
padding-left: 4px;
color: #000080;
float: left;
font-family: 'Tangerine', serif;
text-shadow: 4px 4px 4px #aaa;
}
</style>
Do you think it is doable?
Thanks
Paolo