Jump to content


Photo
- - - - -

white space between text not responding to custom CSS

padding margin space

  • Please log in to reply
1 reply to this topic

#1 jess357

jess357

    Newbie

  • Members
  • 1 posts
  • LocationSeattle
  • Country: Country Flag

Posted 07 January 2013 - 05:15 AM

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.
 

 



#2 Danny

Danny

    Ninja

  • Moderators
  • 7,518 posts
  • LocationManchester, UK
  • Country: Country Flag

Posted 07 January 2013 - 09:54 AM

Hi,

 

The main white area on your site is coming from the below your content, this gap is created by your table. You have height 200px, remove this or lower the value and this will resolve the issue.







Also tagged with one or more of these keywords: padding, margin, space

Click to return to top of page in style!