Styling Issue....baffled!

Permalink
So... new to concrete VERY...but not new to web stuff, been using joomla almost exclusively the last couple of years.

Reference url below

I want to narrow the distance between the "Our Services" and the beginning of the unordered list (lawn mowing) the padding between the 2 lines is a bit excessive, but I can find no-where in the css for the template nor the topography where it is controlled...any help would be appreciated.

http://brettscuttingedge.com/index.php?cID=1...

Our Services:

Lawn Mowing
Mulch Installation

 
barco57 replied on at Permalink Reply
barco57
Its the 40px margins on the ul in the typography.css line 60
ul, ol {
  list-style-type:circle;
  margin-bottom:40px;
  margin-left:40px;
  margin-right:40px;
  margin-top:40px;
  padding-bottom:4px;
  padding-left:4px;
  padding-right:4px;
  padding-top:4px;
}


The above code is from firebug, which breaks out all of the styling, in your stylesheet it looks like
ul, ol {
   margin: 40px;
   padding: 4px;
   list-style-type: circle;
}
brenwa replied on at Permalink Reply
Thank you :)

Exactly what I needed to know...and fixed thanks :)