daniele wrote:
> Hi guys,
> i've 2 simple question for you, please help me:
>
> 1) i'm using framework tiles with jsf to have a fixed look for each
> page of my jsf application. If i want using an image as a page
> background,how can i do it?
Not a Java/JSF question...
Use CSS:
....
body {
background-image: url(../images/yourImage.gif);
background-position: top left;
background-repeat: no-repeat;
}
....
> 2) i want to use customized botton, so i've created them with graphic
> programs. Cause my application has 2 languages, i have to create 2
> different bottons with two different msg or can i pass the image and
> retrieving msg from bundle?
> That is i've used image attribute for command button but it show my
> image without loading text from bundle...how can i do it?
That's impossible to answer, as long as you don't show ut how you
do it today...
--
Dag.
|