Bom pessoal, estou em dúvidas em duas questões…a primeira é : tenho este arquivo xhtml (trabalho com jsf) e não sei como fazer o rodapé ficar em um lugar fixo na tela (no caso, se tiver pouco conteúdo, que fique ajustado adequadamente) :
[code]<f:view>
<a4j:loadStyle src="/css/defaultmenu.css" />
</head>
<!--<style type="text/css">
body {background: url("SipPulsePortal/images/body.png"); background-repeat:repeat-y;background-attachment:fixed; }
</style> -->
<body>
<div class="topo"><h:outputLink value="/SipPulsePortal">
<h:graphicImage value="/images/logo-portal.png"
style="margin-left: 5px; margin-top: 10px; border: 0px" />
</h:outputLink>
<ui:insert name="mbody"/>
<h:form id="myfrm">
<c:if test="#{!empty loginController.id}">
<span style="margin-right: 4px; margin-top: 50px">
<h:outputText
value="#{msgs['global.welcome.user']}, #{loginController.username}@#{loginController.domain}" margin-top="30px" styleClass="textoPreto" />
<h:commandLink action="#{logoffController.logoff}"
title="#{msgs['global.logoff.title']}">
<h:outputText value="[#{msgs['global.logoff']}]" styleClass="textoPreto" />
</h:commandLink> </span>
</c:if>
</h:form>
<h:form id="formLanguage">
<h:commandLink action="#{localeController.changeLocale}" immediate="true">
<h:graphicImage value="/images/brazil.gif" style="border: 0px ; margin-top:5px " />
<f:param name="localeSelected" value="pt_br"/>
</h:commandLink>
<rich:spacer width="3px"/>
<h:commandLink action="#{localeController.changeLocale}" immediate="true">
<h:graphicImage value="/images/usa.gif" style="border: 0px"/>
<f:param name="localeSelected" value="en_us"/>
</h:commandLink>
</h:form>
<ui:include src="/templates/messages.xhtml" />
</div>
<h:form id="frmenu">
<div class="menu">
<ul>
<li class="current"><h:commandLink action="home">
<f:verbatim>Home</f:verbatim>
</h:commandLink></li>
<li><h:commandLink action="howitworks">
<f:verbatim>Como Funciona</f:verbatim>
</h:commandLink></li>
<li><h:commandLink action="advantages">
<f:verbatim>Vantagens</f:verbatim>
</h:commandLink></li>
<li><h:commandLink action="rates">
<f:verbatim>Tarifas</f:verbatim>
</h:commandLink></li>
<li><h:commandLink action="residential">
<f:verbatim>Residencial</f:verbatim>
</h:commandLink></li>
<li><h:commandLink action="business">
<f:verbatim>Empresarial</f:verbatim>
</h:commandLink></li>
</ul>
</div>
</h:form>
<rich:spacer height="50px"/>
<div class="botton2" id="botton2">
<ui:insert name="bodyHome"/>
<rich:spacer height="200px"/>
<h:form id="rodapeform">
<div class="rodape">
<h:commandLink action="questions">
<h:outputLabel value="#{msgs['menu.portal.frequentquestions']}" align="left" valign="middle" />
</h:commandLink>
<rich:spacer width="2"/>
<h:graphicImage value="/images/menu_separator.png" align="left" valign="middle" />
<rich:spacer width="2"/>
<h:commandLink action="contact">
<h:outputLabel value="#{msgs['menu.portal.contactus']}" align="left" valign="middle" />
</h:commandLink>
<rich:spacer width="2"/>
<h:graphicImage value="/images/menu_separator.png" align="left" valign="middle" />
<rich:spacer width="2"/>
<h:commandLink action="about">
<h:outputLabel value="#{msgs['menu.portal.aboutus']}" align="left" valign="middle"/>
</h:commandLink>
<rich:spacer width="2"/>
<h:graphicImage value="/images/menu_separator.png" align="left" valign="middle" />
<rich:spacer width="2"/>
<h:commandLink action="career">
<h:outputLabel value="#{msgs['menu.portal.career']}" align="left" valign="middle" />
</h:commandLink>
</div>
</h:form>
</div>
</body>
</f:view>
[/code]Outra dúvida minha, não sei se alguém ja fez isto, mas assim, no caso, estou desenvolvendo um sistema e gostaria de tipo, em apenas “algumas páginas” “liberar” os fontes para os clientes para que estes possam edita-los como bem entender, o layout base já estaria inserido, mas algum texto, imagem, algo assim para poder ser adicionado pelo cliente…se alguem puder ajudar, me dar uma dica nestas minhas dúvidas ficaria muito grato!! Agradeço pela ajuda!!! Abraços!!