Hi, Still working out a few details on this site: www.meeting-one.com
I would like to shrink some elements so that the action boxes on my home page come up a bit.
1. How can I reduce the bottom margin/padding in the Header Top region? I found the value in the css for the top but not the bottom of this gray bar.
2. Header region, just want to reduce some of that white space
3. Preface Top has too much red space above and below my banner
The goal being that everything comes up so the boxes under my banner move up "above the fold."

Thanks so much for any help you can offer.

CommentFileSizeAuthor
#1 site-img.jpeg64.66 KBDeepika.chavan
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Deepika.chavan’s picture

FileSize
64.66 KB

Hi ,
Try adding following CSS to your theme's "local.css" file in the /css directory, if one doesn't exist you can create one and it will load it automatically. I tried it using inspect element and after making the changes your site looks like 'site-img' (Please see the attachment).

#block-block-17, #block-search-0, #block-block-2, #block-block-28 { 
 margin-bottom: 0; 
}

#preface-top-inner #block-block-5 .inner .inner-wrapper .inner-inner .content p {
 margin: 0 0 0 0; 
 display: none;
} 

#preface-top-inner #block-block-5 .inner .inner-wrapper .inner-inner .content {
margin-top: 5px; 
} 

Rgrds,

Deepika Chavan.

colirado’s picture

Status: Active » Closed (works as designed)

You are a pro Deepika! Thanks so much. It worked perfectly!