Editing Template
cinemasaville - February 26, 2008 - 18:35
| Project: | Four Seasons |
| Version: | 6.x-1.9 |
| Component: | User interface |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed |
Description
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!

#1
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;
#2
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
#3
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.
#4
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;
}
#5
Hi, somebody know how to delete the "try another color" block, thank you, xD.
#6
Please open a new issue! dont over write an existing one with your new title ...
question moved here: http://drupal.org/node/245608
#7
#8
Automatically closed -- issue fixed for two weeks with no activity.