1
Greeting to all,
I’m new as a Java programmer with JSF projects, I want to put an image as the page plan, and I don’t know how to do.
This is the structure of my project;
I tried to put the line of code in the css file like this;
background-image:url("/resources/images/papel_de_parede.jpg");
OBS: The structure of Maven.
But it didn’t work.
I need help!
FOR MORE INFORMATION MY PROJECT IS ON GITHUB
https://github.com/wladyband/GestaoADM/tree/master/GestaoADM/src/main/webapp/WEB-INF/template
Have you tried this?: background-image:url(".. /.. /Resources/images/papel_de_parede.jpg");
– electus
that line of code didn’t pick up.
– wladyband
Both the folders
css
how muchimages
are inresources
, right? Have you tried something likebackground-image:url("../images/papel_de_parede.jpg");
– Bruno César