> > .header { background-image:url(./images/banner.jpg); }
You can stop the image repeating by adding
background-repeat: no-repeat; to the .header rule.
> should my image be sized just right
> for the field its filling or is there another way to get this to look
> correct?
Yes this would also solve your problem.
I'd suggested using the following css;
.header {
background-image:url(./images/banner.jpg);
background-repeat: no-repeat;
height: 170px;
}
Let me know if you have an issues with that
colm
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/tiddlywiki?hl=en.