I tried creating a css menu in an Facelets page put it seems my div class is not been recognized.here is the code
Facelets page
<h:form>
<div class=“menu“>
<ul>
<li><a href=“#“> create staff </li>
<li><a href=“#“> view staff </li>
</ul>
</div>
</h:form>
My css menu code is fine but when I save and deploy the application on netbeans it doesn't effect any change. Been wondering if the <h:
tags for styleClass could be needed for it to work on a JSF/Facelets page. Any help?