The fix given in the knowledge base and the advanced manual reads in part
this results in a top left column with no preceding FRAGMENTANCHOR line, while the other columns do have the line above them.
If I change the order of the code thus
I get the FRAGMENTANCHOR line above all colums.
My question is, do I break anything else by making this change?
thanks,
Code:
Then edit the code of your chosen fragment layout template and replace it with:
----------------------------------------------
<script language=JavaScript>
<!--
if ( currentcol++ == 0 ) document.write('<tr><td colspan=3><table border=0><tr>');
document.write('<td width="' + colwidth + '%" valign=top>');
// -->
</script>
<noscript><tr><td width="100%"></noscript>
NETQUOTEVAR:FRAGMENTANCHOR <=========== original position
<table border="0" width="100%" cellpadding="5" cellspacing="1">
<tr>
<td valign="top" align="left">NETQUOTEVAR:BROCHURE_IMAGE</td>
</tr>
If I change the order of the code thus
Code:
Then edit the code of your chosen fragment layout template and replace it with:
----------------------------------------------
NETQUOTEVAR:FRAGMENTANCHOR <======== moved
<script language=JavaScript>
<!--
if ( currentcol++ == 0 ) document.write('<tr><td colspan=3><table border=0><tr>');
document.write('<td width="' + colwidth + '%" valign=top>');
// -->
</script>
<noscript><tr><td width="100%"></noscript>
<table border="0" width="100%" cellpadding="5" cellspacing="1">
<tr>
<td valign="top" align="left">NETQUOTEVAR:BROCHURE_IMAGE</td>
</tr>
My question is, do I break anything else by making this change?
thanks,
Comment