How i can change logo disposition? And add image backgroung to blocks?
SuperFedya - November 16, 2006 - 16:51
| Project: | B7 |
| Version: | 4.7.x-1.x-dev |
| Component: | HTML |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
Description
Hello
I use this theme B7 http://drupal.org/node/49946
I need place logo to the centre, and add image backgroung to blocks.
How i can do this?
Thanks. This is better Drupal theme ever made!

#1
The best way would be to edit the css. There are two different ones defined, for the different colors:
style.css: This is for color specific styling. If you add a background that only works with the certain color, use this.
base.css: This is for non-specific color styling. Center the title using this.
In case you don't know css too well, find "#header img" in bass.css, and change it to the following:
#header img {//float: left;
padding: 10px;
//display: block; //you might need this, I'm not sure
margin: auto; //you may have to do something else for IE, not sure if this will work
}
And to style.css, add something like this:
.sidebar .block {background: url("path to your file");
}
#2
#3