Hi,
I would like to remove the indent on every first line in the paragraphs.
I've tried p {text-indent:0} but that won't work.
Hi,
I would like to remove the indent on every first line in the paragraphs.
I've tried p {text-indent:0} but that won't work.
Comments
Comment #1
jorisx commentedoops
had to use:
p {
clear: both;
text-indent:0
}
solved :-)
Comment #2
jorisx commentedHmm no that really didn't solve it because now it clears everything after the paragraph :-/
so it's still a problem to remove this white space on the left side of the first line in a paragraph,
any help would be appreciated :-)
Comment #3
pkiff commentedI'm not familiar with Zen for 5.x, and maybe you've already resolved this issue.
If not, then I would remove the "clear: both;", since it is unrelated to text-indenting, and is instead related to floats. It is certainly possible that other floated divs/blocks may be causing your text to indent, but if this is the case, then it is not a text-indent problem but a float problem.
Also, the code you provided is missing a closing semi-colon. Is it possible you just forgot to include the closing semi-colon? i.e.:
Comment #4
akalata commented