1 cystophora May 07, 2007 08:52
3 cystophora May 07, 2007 12:28
Sorry, i can't seem to get that to work. The line in main.php reads:
<a href="<?php $Blog->disp( 'url', 'raw' ) ?>"><src img="../img/header.jpg" alt="Captain's Blog"></a>
4 edb May 07, 2007 15:59
Is the image in your skins/yourskin/img folder? If so get rid of the ../ before the img/ in the image src. Oh and it's supposed to be <img src="img/whatever.jpg" alt="whatever" />".
5 samredman May 09, 2007 10:04
Cystophora -
On your website where you tried to implement the suggestion given here, you have a mal-formed bit of html, namely the "a" element.
You have
<a a href="http://www.baird-online.c
That should be
<a href="http://
You have an extra "a"in there.
Plus, as Edb pointed out earlier.. you also have this:
<src img='
which should be
<img src='
Fix those html errors and see how that works.
6 cystophora May 13, 2007 07:16
Thanks guys, works perfectly now. Sorry it took so long to reply
7 adriscoll Jun 12, 2007 21:11
cystophora,
i saw on your site that you are using 2 different header images that dynamically link to their respective blogs (bairds online blogs and captains blog).
how were you able to set that up to pull 2 different images and link correctly. i have followed the advice from this thread but now have 1 image over all of my many blogs.
The line that makes the header looks something like this:
You can change it into something like this:
That should do the trick.
Good luck