Skip to content
Advertisement

Background Image and Logo Image is not displayed in jsp page?

I am new to integrate UI Design in application. I have a jsp page and whick code is given below:

`

JavaScript

`

below is my screenshot when I run this jsp file: enter image description here

I want background image here which I added as inline css but background image is not dispalayed proper and also logo is not displayed.

Please anybody can help me to get this? Thanks in advance.

Advertisement

Answer

Your page is at /FTL/evosnapRedirectController/success/1485323783355. The relative URL resources/img/xyymm/home.jpg in the inline css resolves to /FTL/evosnapRedirectController/success/resources/img/xyymm/home.jpg, but it seems that the resource is actually at /FTL/resources/img/xyymm/home.jpg

You need to include the context path in the background URL:

JavaScript

or

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement