Hi guys,

Hopefully this is an easy quickie for someone with much better Drupal knowledge than me!

Do you know how to move the body text up higher on my front page? http://tiny.cc/K5j2p

As you will see on my landing page, I have been playing around with the CSS of Garland, and I now have a big white gap under the header before the body text. I cannot move the body text (Attention Men: You...) any higher on the editing page as it is at the top of the body box- so I'm guessing it is a template thing.

I have looked through the forums and using Google but it is all about customizing by adding new pictures. My technical knowledge is really low, so please answer in layman's terms!

Thanks - it should make a big difference to the site.

Comments

aloyr’s picture

Status: Active » Needs review

on the style.css (or on another style and/or file that comes after style.css), around line 476, change your padding settings to something like this:

#wrapper #container #center .right-corner .left-corner {
  background:transparent url(images/bg-content-left.png) no-repeat scroll 0 0;
  left:-10px;
  margin-left:-10px;
  min-height:400px;
  padding:20px 25px 5em 35px;
  position:relative;
}

this changed the first value in padding from 60px to 20px. you can play around with it if you like to fine tune it to your site. IMHO this is an issue with your implementation, not the garland theme itself, methinks.

MichaelT’s picture

Status: Needs review » Closed (fixed)

Thanks - that is exactly what I needed to know - and thanks for the clear instructions

aloyr’s picture

Assigned: Unassigned » aloyr