Hi I thought others might need this info too!!
you can find how to do this in
http://codex.wordpress.org/Template_Tags/get_the_tag_list
--------Excerpt from that part of the codex link above-----------
Example-
A Basic Example
This outputs the list of tags inside a paragraph, with tags separated by commas.
<?php
echo get_the_tag_list('<p>Tags: ',', ','</p>');
?>
This would return something like.
<p>
Tags:
Tag 1,
Tag 2, ...
</p>
----------what i think will happen-----------
1).edit (me SSL) this should return tag - tag
<?php
echo get_the_tag_list('',' - ','');
?>
2).edit (me SSL) this should return *tag - tag - tag
<?php
echo get_the_tag_list('*',' - ','');
?>
3).edit (me SSL) this should return *tag - tag - tag>>
<?php
echo get_the_tag_list('*',' - ','>>');
?>
Syntax---------from codex----------------
<?php $tag_list = get_the_tag_list( $before = 'before', $sep = 'seperator', $after = 'after' ) ?>
Now I have to find where to put this code: to edit Inove
because'
my other pages say Category {or} Tag | Spartan Safety Ltd
my front page says | Spartan Safety Ltd
thanks MG12