I have a p:commandLink in xhtml page
<p:commandLink onclick="routeDeleteConfirmation.show()" title="Delete">
<h:graphicImage class="deleteBinButtonLnk" />
<f:setPropertyActionListener value="#{route}"
target="#{routeController.selectedRouteHeader}"/>
</p:commandLink>
Css:
.deleteBinButtonLnk { width: 17px; height: 19px;
border-style: none !important;
padding: 2px 2px;
background: url('../images/buttons/delete_bin_off.png')
no-repeat;
}
.deleteBinButtonLnk:hover{ width: 17px; height: 19px;
border: none;
background: url('../images/buttons/delete_bin_on.png')
no-repeat;
here it displaying border for the images in h:graphicImage. i don't need border for it.
please tell a solution.

<img>instead of on the<a>? This is a totally unexpected and wrong HTML/CSS approach of having an image link. – BalusC Jan 4 at 15:54