Sorry, I know this is SO remedial, but I installed the Google Calendar plugin and had to tweak a few things on the .css file someone designed for me and my paragraph spacing seems to have been erased.
(is it even in the css file?) :-)
What I would like is for there to be a nice space between paragraphs in the body of my posts. Like a line and 1/2. Can someone provide me the code and where to place it?
Thanks!!
ClaytonJames
Member
Posted 4 years ago #
something like this?
p { margin:0 0 15px; }
yes, thank you, where should I put it, in this?
body {
background: #ffffff;
color: #444444;
/*font: 0.8em/1.5em Verdana, Arial, Sans-serif;*/
font-family: Verdana, Arial, sans-serif;
font-size: 62.5%;
line-height: 1.4em;
}
ClaytonJames
Member
Posted 4 years ago #
I'm only guessing, but I would think this would work:
body {
background: #ffffff;
color: #444444;
/*font: 0.8em/1.5em Verdana, Arial, Sans-serif;*/
font-family: Verdana, Arial, sans-serif;
font-size: 62.5%;
line-height: 1.4em;
}
p {
margin: 0 0 15px;
}
..adjust the 15px to whatever looks right for your theme.
worked like a charm, thanks so much!!
ClaytonJames
Member
Posted 4 years ago #