See Image: http://img525.imageshack.us/img525/231/befixed.jpg

Is there any way to remove the borders from ONLY the circled items/blocks? I'm relatively new to Drupal theming so I'm kind of stumped on how to address this issue. I thought about making the buttons and the news slider part of the preface but when I move them it keeps wanting to weight everything 33/33/33 across the top rather than making the buttons appear vertically over each side bar.

CommentFileSizeAuthor
#4 border.test.jpg72.13 KBGardenGuy
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

rmacy’s picture

Component: Miscellaneous » Code
danpros’s picture

Hi,

I set the border here:

#sidebar-left h2.block-title,
#sidebar-right h2.block-title {
background: #e6e6e6;
margin:0;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 10px;
padding-right: 10px;
font-size: 1.3em;
border-right: 1px solid #bbb;
border-left: 1px solid #ddd;
border-top: 1px solid #ddd;
}

#sidebar-left .block-content,
#sidebar-right .block-content {
background-color: #f4f4f4;
border-right: 1px solid #bbb;
border-bottom: 1px solid #bbb;
border-left: 1px solid #ddd;
border-top: 1px solid #ddd;
}

Use Firebug and find the Ids for that block and remove the border, example:

#sidebar-left #block-block-5 h2.block-title,
#sidebar-right #block-block-5 h2.block-title {
background: #e6e6e6;
margin:0;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 10px;
padding-right: 10px;
font-size: 1.3em;
border:none;
}

#sidebar-left #block-block-5 .block-content,
#sidebar-right #block-block-5 .block-content {
background-color: #f4f4f4;
border:none;
}

Dan

danpros’s picture

Status: Active » Closed (fixed)

Hi,

I think that answer your question. I'll close this.

Thanks,
Dan

GardenGuy’s picture

Version: 6.x-2.0 » 7.x-1.0-rc2
Priority: Normal » Major
Status: Closed (fixed) » Active
FileSize
72.13 KB

I'm having this same problem. I have a block ID of 5 just like you posted above. I added it to my style.css file and nothing changed. Is there a different file I should be changing? I have borders and shades all around my left and right custom blocks. I'm new to this so may need a little step by step instruction. See attached photo. Thank you!