1 samredman May 07, 2007 05:31
3 samredman May 09, 2007 05:00
That didn't work. Evidently... it just ignores the new p class.
I liked that text-indent=0. I liked the simple execution... but evidently you can't cancel out with another p designation. Is there some other way to do accomplish the clear indent?
4 afwas May 09, 2007 06:46
If so, the second part of my answer comes into action. If you check the source, what does it say? Is the <p class="clear"> wrapped in the <p> from the auto p plugin?
Try in css:
span.clear{
text-indent: 0;
}
and wrap the text in:
<span class="clear">This is the text of the post that is not to be indented</span>
The auto p plugin will still wrap it in it's <p> tag, but hopefully IE has this part of CSS well implemented, because it should be overridden by the <span class="clear"> tag because the span tag comes after the <p> tag in:
<p><span class="clear">Text text text</span></p>
Good luck
5 samredman May 12, 2007 18:05
Afwas: Well done, my friend!! It worked perfectly. I haven't been where I could test this for a week is why I hadn't come back with this positive feedback.
I will mark this one SOLVED! Great work, Afwas (as usual).
You can make a second paragraph class in your css file like so:
In your posts you can wrap the no indent lines in the new class:
I haven't checked if this interfers with the auto p / auto br plugin that is automatically installed and wraps the text in <p> paragraphs. If so, you can make a <div> in stead of a <p>.