Hi-
I have very limited experience with development, been doing design for awhile. The site (testing.zevsiegl.com) is getting to the state I want, but I have spent hours trying to fix the problem without success.
It's as simple as wanting to strip some of the white space from in between the text elements.
Here's what I've tried:
In Custom Code area:
<code>
.content .content-pad {
padding: 0px;
}
h1, h2 {
font-family: "daniel", cursive;
font-color: #cc571b;
margin: 0;
padding: 0;
}
blockquote {
padding: 0px;
margin: 10px;
border: 0;
}
</code>
And in child theme area:
<code>
h1 {
font-family: "daniel", cursive;
font-color: #cc571b;
margin: 0;
padding:0;
}
h2 {
font-family: "daniel", cursive;
background-color: transparent;
font-color: #2c7b94;
text-decoration: none;
word-spacing: normal;
text-align: left;
letter-spacing: 1px, inherit;
line-height: 1.4em;
font-size: 1.3em;
margin-top: 1em;
margin-bottom: 0;
padding: 0;
}
p {
font-family: 'Trebuchet MS';
background-color: transparent;
font-color: #373737;
text-decoration: none;
word-spacing: normal;
text-align: left;
letter-spacing: 0;
line-height: 1.6em;
font-size: 1.3em;
margin-bottom: 0;
padding: 0;
}
I'd love to know where I am going wrong and how to make it right.











