If I want to get rid of the space above the banner where the javascript used to be how would I do that? Also, If I want to remove the bar area where the breadcrumbs live how could I do that.

Much Thanks!

CommentFileSizeAuthor
#3 top-of-page.JPG16.21 KBKnock Twice

Comments

derjochenmeyer’s picture

edit the page.tpl.php file and remove the div with id=navigation-breadcrumb

the space above is more tricky.... try adding something to the
follwoing lines in stlye.css

#pagewrapper {style.css (line 27)
background-color:#FFFFFF;
border:15px solid #FFFFFF;
margin:auto;
width:960px;
}

add after width:960px;
border-top:none;

ding-1’s picture

Just a minor note, the lines in my #pagewrapper were in a different order. The "border-top:none;" works nicely for me, but it has to come after the other border info to take precedence.

#pagewrapper {
margin:auto;
width:960px;
border:15px solid #ffffff;
border-top:none;
background-color:#ffffff;
}

BTW, this is a pretty great theme. It's easy to navigate the CSS. Thanks!

-Ding

Knock Twice’s picture

StatusFileSize
new16.21 KB

I went ahead and added "border-top:none;", as described above... but there is still an undesirable amount of white space on top of the tabs.

Where do I go to decrease that space further?

See the attached for my example.

derjochenmeyer’s picture

try to play with the padding of the headline

#headline {  // style.css (line 33)
color:#333333;
font-size:28px;
font-weight:bold;
padding:10px 20px;
text-align:right;
}
tachobernal’s picture

Title: Editing Template » How to delete the "try another color" block

Hi, somebody know how to delete the "try another color" block, thank you, xD.

derjochenmeyer’s picture

Title: How to delete the "try another color" block » Editing Template

Please open a new issue! dont over write an existing one with your new title ...

question moved here: http://drupal.org/node/245608

derjochenmeyer’s picture

Status: Active » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.