Quote from: bassett777 on January 18, 2003, 06:28:05 PMPeter,
Perhaps the question should be how? As I am completly new to Yab and it workings.
If that means what I think it does, you need something like:
<a href="http://www.mysite.com/">Home</a>
<!-- absolute path to home page if your site is called mysite.com -->
or
<a href="./">Home</a>
<!-- relative path to index page of current directory -->
or
<a href="../">Home</a>
<!-- relative path to index page of next directory up -->
or replace 'Home' in any of these with:
<img src="myimage" width="width" height="height" border="0" alt="Home" />
Where
myimage is the path to your image (eg images/home.gif) and
width and
height are the image width and height respectively in pixels.
If your home page is called anything except index or default, the link will also need to include the file name (eg
http://www.mysite.com/myhomepage.html).
Hope that's not either too complicated or too explicit (sorry if I've misread your revised question). David's advice about where to put it is still good advice, too!
