First-letter Drop Cap needed
First-letter Drop Cap needed
I am trying to put text and make the first letter bigger than the following text and have no clue how to achieve this.
has anyone tried or know-how to make this?
Cheers!
has anyone tried or know-how to make this?
Cheers!
- BaconFries
-
- Posts: 5886
- Joined: Thu Aug 16, 2007 7:32 pm
Re: First-letter Drop Cap needed
Set text to Output Format to use Use: <p>tags then use the following Page HTML between <head></head>tags. Set font size and colour to your needs.
Or if using default <span>
Code: Select all
<style>
p::first-letter {
font-size: 200%;
color: #8A2BE2;
}
</style>
Code: Select all
<style>
span {
display: inline-block;
}
span::first-letter {
font-size: 200%;
color: #eb632d;
}
</style>
Re: First-letter Drop Cap needed
You can also use a 'wrap text' object, where first letter is a different object.
https://wysiwygwebbuilder.com/wrap_text.html
https://wysiwygwebbuilder.com/wrap_text.html
Re: First-letter Drop Cap needed
Or highlight first character and increase font size.
Re: First-letter Drop Cap needed
Hey everyone, I was actually working on a simple free extension for this a time back for those who don't know how to code but hadn't quite finished it. If anyone is interested, I can post a link to it this weekend.
- BaconFries
-
- Posts: 5886
- Joined: Thu Aug 16, 2007 7:32 pm
Re: First-letter Drop Cap needed
Feel free to post the url to the extension on your site as it will be useful.
Re: First-letter Drop Cap needed
+1Feel free to post the url to the extension on your site as it will be useful.

Re: First-letter Drop Cap needed
Thanks for all comments.
I have to add that I do not want to use any image following text around the image.
I also tried to use the HTML object with code provided in this topic but the drop but the following text getting lower than which does not look good for me.
I need the following text after the first CAP letter to be positioned at the center of the drop cap letter.
Sorry for my poor English but you can see what I need to do as below:
https://www.eexpertbiz.com/qikr-image1.jpg
It is two-line texts with a black background but the Q on the next line is what I need.
Thanks again
I have to add that I do not want to use any image following text around the image.
I also tried to use the HTML object with code provided in this topic but the drop but the following text getting lower than which does not look good for me.
I need the following text after the first CAP letter to be positioned at the center of the drop cap letter.
Sorry for my poor English but you can see what I need to do as below:
https://www.eexpertbiz.com/qikr-image1.jpg
It is two-line texts with a black background but the Q on the next line is what I need.
Thanks again
- BaconFries
-
- Posts: 5886
- Joined: Thu Aug 16, 2007 7:32 pm
Re: First-letter Drop Cap needed
You didn't ask for that you asked for "First-letter Drop Cap" and the two snippets provided do that!I need the following text after the first CAP letter to be positioned at the center of the drop cap letter.
You can try one of the following snippets. Note both are provided "asis" I have tested but due to not having the specific font you show in the image you will have to adjust the css to suit.
If you are using the default setting for text <span>
Code: Select all
<style>
span
{
display: inline-block;
}
span::first-letter
{
font-size: 200%;
line-height: 0.65;
color: #eb632d;
margin: 0.0em 0.0em 0.1em 0;
float: left;
}
</style>
Code: Select all
<style>
p::first-letter {
font-size: 200%;
color: #8A2BE2;
line-height: 0.65;
margin: 0.0em 0.0em 0.1em 0;
float: left;
}
</style>
Re: First-letter Drop Cap needed
Bacon fries
Thanks for the outlined code.
Sorry for not clarifying clearly as I was thinking it will go to proper positioning.
I wonder if this is responsive or how to make it responsive, because as I am re-sizing the browser then the letters drop down one by one.
Thanks again

Thanks for the outlined code.
Sorry for not clarifying clearly as I was thinking it will go to proper positioning.
I wonder if this is responsive or how to make it responsive, because as I am re-sizing the browser then the letters drop down one by one.
Thanks again
Re: First-letter Drop Cap needed
If anyone is interested, I've made available the extension I was working on based on this threads original query.
More info here: http://www.wysiwygwebbuilder.com/forum/ ... 42&t=91668
More info here: http://www.wysiwygwebbuilder.com/forum/ ... 42&t=91668