Anyone know how to do this on Ms Publisher 2007?

Life_Is_Short

IB Expert
Messages
1,043
Reaction score
181
Gender
Female
Religion
Islam
:sl:

I need to know how to do drop cap function for an article.

new113-1.jpg


Jazak'Allah Khair. :statisfie
 
Do it with CSS:
Code:
first-letter{
font-size:15px;
float:left;
}
Have fun with CSS, dont depend totally on Publisher.CSS is also very very easy and you have to only link it to your Html Page to do that
For example,
This will be your Html Page:
Code:
<html>
<head>
[B]<link rel="stylesheet" href="styles.css" type="text/css">[/B]
</head>
<body>A fox jumps over the cat</body>
</html>
link rel.. is to link the CSS file with HTML.In other words, HTML will import its decoration and style with that.But with what?
A css file.You have to make a new CSS file and save it with .css format and its name must be "styles" as you can see in the link rel tag, we gave the url(or href), styles.css, so styles will be it's name and css file be its format.And edit the CSS file and enter this:
Code:
first-letter{
font-size:15px;
font-weight:bold;
float:left;
}
You can easily see that the CSS file is telling to HTML to make the first-letter(the letter at the beginning of the sentence), big(15px;increase as you want), bold or thick and to stay at left(remove float:left if your text is not wrapped in paragraph;<p> tags or it can make a problem) like the one you gave the picture of.
And it's result will be:
dot4qa-1.png

CSS is easy, isn't it?
I am ready to help you anytime
 
Last edited:
All in good time. Ins'Allah.

I need to write this article on publisher, for now.

Jazak'Allah Khair.
 
Assalaamu 'Alaykum,

Highlight your text, go to 'Format' and click on 'Drop Cap' and that should give you the option that you're looking for inshaa'Allah.
 

Similar Threads

Back
Top