Recent Topics

1 Jan 10, 2006 00:08    

Let me start by saying that I'm very new to webdesign and as such, php is completely new to me. I know a bit about html, but most of what I do in the way of editing is trial and error.

My question is this: I'm using the custom skin and I want to replace the blog name at the top with a custom logo. How would I accomplish this? Which file do I edit? I'm assuming the css.

2 Jan 10, 2006 16:46

See /skins/custom/_main.php.

3 Jan 10, 2006 16:58

ok, but what part do I edit?

4 Jan 10, 2006 21:04

Find the code that displays the blog name and replace it with (the html to display) your image.

In current CVS it's

<h1 id="pageTitle"><?php $Blog->disp( 'name', 'htmlbody' ) ?></h1>

that displays the blog's name. Replace this with your

<img src=".." alt=".." />

.


Form is loading...