Hi cdgregory,
Yes, enable custom.css so you don’t lose this in an update (and be careful you don’t just copy over an entire “frisco for buddypress” updated directory when it comes out!
1) First off the CSS for a logo. I wanted to use most of the 960px width so used this code in my custom.css and also wanted to leave the text logo the same so copied over that too:
#header {
background: url(images/logo.png) left top no-repeat !important;
}
#logo {
float: left;
margin-bottom: 0;
margin-top: 0;
float: left;
max-width: 950px;
}
#header h1 {
float: left;
margin-bottom: 0;
margin-top: 20px;
text-align: left;
max-width: 820px;
}
#header h1 a {
color: #FFF;
text-decoration: none;
font-size: 1em;
font-weight: 500;
text-shadow: 0 -1px 0 #052343;
line-height: 1.2em;
letter-spacing: .5;
text-align: left;
max-width: 820px;
}
2) Play around with these values. As you can see from mine, we’re essentially white to gray to be subtle. But for the gradient, you have three color values (top, middle and bottom or 0%/15%/100% respectively). The code is here for you to ensure that you’ll have a gradient for all “modern” browsers (e.g., Firefox, Chrome/Safari, IE versions, etc.):
#header #search-bar {
background: #ffffff;
background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 15%, #e1e1e1 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(15%,#ffffff), color-stop(100%,#e1e1e1)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #ffffff 0%,#ffffff 15%,#e1e1e1 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #ffffff 0%,#ffffff 15%,#e1e1e1 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #ffffff 0%, #ffffff 15%,#e1e1e1 100%); /* IE10+ */
filter: none; /* IE6-9 */
background: linear-gradient(top, #ffffff 0%,#ffffff 15%,#e1e1e1 100%); /* W3C */
}
Hope this helps — Steve