Recent Topics

1 Dec 14, 2005 21:57    

Greetings everyone.

I'ma newbie, plain and simple, and I'm hoping I can get some help placing an image in the Header where the title is.

I want to be able to make a Photoshop image and use it as a company header, but I don't know:

A: what size to make the image

and

B: what code I use/edit to put it on the page in the proper place.

Also, if I have multiple pages on my blog, how do I get the header to be seen on each page?

Thanks in advance for any help you can give me.

www.realitydeviants.net

2 Dec 15, 2005 14:59

Is there any reason you took out the link back to b2evolution? If you won't leave that simple courtesy in your skin, then you'll be hard pressed to find anyone involved with the project who is willing to spend time helping you.

3 Dec 16, 2005 23:48

actually, I screwed up when editing the page, and couldn't figure out how to get it (the link to B2evolution) back in. Ultimately I just reinstalled the template with everything back where it was.

I still don't know how to put a header image in there though.

4 Dec 17, 2005 00:53

You edit the skin that your blog uses. Right now it looks like you're using Custom. Edit the file /skins/custom/_main.php

5 Dec 18, 2005 22:34

I understand I have to edit that file.

That was what got me into trouble in the first place. :)

what I_don't_understand is HOW to edit the file properly so that I have a custom header that is shown thorughout my blogs.

6 Dec 18, 2005 23:16

The easiest way might actually be to edit your css file. Find this code in /skins/custom/custom.css:

div.pageHeader {
	padding: 1ex;
	margin: 0 1px 1ex 1px;
	border-bottom: 1px solid #ddd;
	text-align: center;
	background: #78a;


Change the last line to something like:

background: #78a url(http://www.yoursite.com/yourimage.jpg);


Experiment until it looks the way you want. You'll need to know a bit about CSS, so here's a tutorial:
http://www.w3schools.com/css/css_intro.asp
This section deals with backgrounds (including background images):
http://www.w3schools.com/css/css_background.asp

Note that anything you place in your skin header section will show up on all blog pages that use that skin (unless you tell it not to).

7 Dec 19, 2005 00:23

Thanks a bunch!

Your help is greatly appreciated.


Form is loading...