Forum Moderators: open
i.e.:
Sometimes I want to write 1 or more words or sentences but use a super large or large size font and have it also in italics. But the CSS sets the fonts as a set size.
In the particular case of the blog I am referring to the background is Black.. Text is White.
When I increase the font size and do italics in a block of text the text becomes black and a large area behind, above, on the sides and below the text turns white.. very annoying indeed.
I would simply like to see the text enlarged and the italics and the the text remains white with a black background.
Here is html:
<div class="entry">
<p><img class="size-full wp-image-48" title="TEXT" src="http://example.net/wp-content/uploads/2008/08/ld.jpg" alt="alt text" width="390" height="293" align="right" hspace="10" vspace="5" /></p>
<p>TEXT TEXT TEXT</p>
<p>TEXT TEXT TEXT</p>
<p>TEXT TEXT TEXT</p>
<h2><strong><em>“Headline Headline Headline<br />
Headline Headline Headline<br />
Headline Headline Headline<br />
Headline Headline Headline"</em></strong></h2>
</div>
perhaps as you say using inline css?
<p>TEXT TEXT TEXT</p>
<p><center><em><font size="h5">“TEXT TEXT TEXT<br />
TEXT TEXT TEXT<br />
TEXT TEXT TEXT<br />
TEXT TEXT TEXT</font><em></center></p>
in your CSS file
#1
p {margin-bottom: 2em;} /*applies to all paragraphs, nothing else to do*/
#2
In CSS file:
p.spaced {margin-bottom: 2em;} /*applies to all paragraphs of class space; must give class name to the paragraph*/
in HTML you enter:
<p class="spaced">TEXT TEXT </p>
#3
One-off version, in the HTML with inlin CSS
<p style="margin-bottom:2em;">TEXT TEXT </p>
One of those shoudl work, but so would a dozen other methods.