Hi... i need some help.
I have a .jsp file and a div tag containing h1 tag.
<div id="header">
<h1 class="header1"><fmt:message key="application.title"/></h1>
</div>
<div id="login"><jsp:include page="/WEB-INF/common/login.jsp" /></div>
here my css file:
#header{border-bottom:1px solid #999;margin-bottom:10px;height:10px;width:100%;
background: transparent url('../images/test.png') left top no-repeat;
background: transparent url('../images/test1.jpg')right top no-repeat;
}
my problem is the second image test1 is not displaying. how can i solve this issue?