Sent by Michael Morrison on 16 July 2002 17:05
Ines,
I'm not sure about your alignment problem, but I think I have the answer
to the problem of your background images not showing up. References to
URLs in style sheets are relative to the style sheet and *not* to the
HTML file, as you might expect. Thus, for best results, use fully
qualified URLs.
HTH,
Michael
On Tue, 16 Jul 2002, Ines Robbers wrote:
<snip>
> a.navA {
> background-image : url(img/head1.gif)}
> a.navA:hover {
> background-image : url(img/head3.gif)}
>
> a.navB {
> background-image : url(img/head2.gif)}
> a.navB:hover {
> background-image : url(img/head1.gif)}
>
> a.navC {
> background-image : url(img/head3.gif)}
> a.navC:hover {
> background-image : url(img/head1.gif)
</snip>