Blogspot HTML code issue?

Steve

New member
So I added a code that allows me to indent my paragraphs on bloggers, but whenever I indent there is a gap between each paragraph. Does anyone have a solution to this issue? :/

Please and thank you
 
the <p> tag automatically adds a small amount of padding between paragraphs I believe. In your CSS try

.p {
padding:0px;
text-indent: 20px; (or whatever you want your indent to be)
}
 
Back
Top