Page 1 of 1

Adding a Custom Banner

Posted: Sat Jul 09, 2011 11:20 pm
by JerryLOLer
Hi, I'm fairly new to using CSS, and templates and all this, I usually jut ran sites with basic HTML, and I'm currently wondering how can you add a custom banner on to your blog? The template being used is mt-trendy.

It's just a simply png image, 600x150.

I looked through the board for answers, but couldn't really find anything.

Any help will be much appreciated.

Re: Adding a Custom Banner

Posted: Sun Jul 10, 2011 10:17 am
by Timbalu
Just edit the /* Banner */ section of your style.css and add something like this to #serendipity_banner

Code: Select all

#serendipity_banner {
    height: 150px;
    width: 600px;
    margin: 0;
    border: 0 none;
    background: #823995 url('img/purple_header.jpg') no-repeat;
}

Re: Adding a Custom Banner

Posted: Sun Jul 10, 2011 7:16 pm
by JerryLOLer
Timbalu wrote:Just edit the /* Banner */ section of your style.css and add something like this to #serendipity_banner

Code: Select all

#serendipity_banner {
    height: 150px;
    width: 600px;
    margin: 0;
    border: 0 none;
    background: #823995 url('img/purple_header.jpg') no-repeat;
}
Thank you very much for the help. It worked perfectly!