You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@myfaces.apache.org by Torben Makowka <to...@topcom.de> on 2008/06/12 11:48:48 UTC

[TRINIDAD] Problems with spacing of navigation in panelPage in IE6

Hi,

i'm currently facing a problem with a panelPage i designed. In IE6 there 
is some space between the navigation facet and the content of the 
panelPage. This space is not visible in FF2! I already tried to get rid 
of this spacing via css skinning (i set 
af|navigationPane::tabs-bottom-start, 
af|navigationPane::tabs-bottom-[start|mid|end]-content to a border, 
padding, height and margin value of 0px) but the problem persists.

The space between the navigation tabs and the content seems to be a link 
with no function (i can click the space but nothing happens) if this 
helps identifying the problem.

Here comes some sample code to demonstrate this:

<f:view>
  <tr:document>
   <tr:form>
    <tr:panelPage>
     <f:facet name="navigation1">
      <tr:panelGroupLayout>
       <tr:navigationPane var="menuItem" hint="tab">
        <tr:commandNavigationItem text="Item 1"/>
        <tr:commandNavigationItem text="Item 2"/>
       </tr:navigationPane>
      </tr:panelGroupLayout>
     </f:facet>
     <tr:panelBox text="Test" inlineStyle="width: 99%;">
      <br>
     </tr:panelBox>
    </tr:panelPage>
   </tr:form>
  </tr:document>
</f:view>

Thanks for any answers!

Torben