Aligning bullets and numbers correctly in Internet Explorer 7

If you are running into problems with your ordered and unordered lists in Internet Explorer this is what you need to solve the issue.

create an override of the content.xsl file. This link will take you to our technote on how to achieve a target override; http://www.webworks.com/technotes/articles/ePublisherPro/EX_ePub_Project_Format_Overrides.36.1.aspx

Once you are done with the override to content.xsl file, open it in a note pad or any other text editor.

Browse until you locate the following block of code;

<!-- Use Number -->
<!--            -->
    <xsl:when test="$VarUseNumbering">
     <xsl:choose>
      <xsl:when test="(count($ParamParagraph/wwdoc:Number[1]) &gt; 0) or (string-length($VarBulletCharacter) &gt; 0) or  (string-length($VarBulletImage) &gt; 0) or (string-length($VarBulletSeparator) &gt; 0)">
       <xsl:choose>
        <xsl:when test="$VarTextIndentLessThanZero">

         <html:table border="0" cellspacing="0" cellpadding="0" id="{concat('SummaryNotRequired_np', $ParamParagraph/@id)}">
          <html:tr style="vertical-align: baseline;">
           <html:td>

Change;

<html:tr style="vertical-align: baseline;">  

To;

<html:tr style="vertical-align: top;">  

Save and close the content.xsl file

Generate your ePublisher Pro project.

HelpCenter/Tips/ListAlignment_IE7 (last edited 2008-02-13 06:18:22 by localhost)