Feng Forum

Support => Older versions => Feng Office 1 => : xtender October 10, 2008, 04:04:37 AM

: "view as list" and "All tasks" in Overview in IE 6
: xtender October 10, 2008, 04:04:37 AM
These strings layed one on other on Page Overview. In FF and Opera - all right.
: Re: "view as list" and "All tasks" in Overview in IE 6
: xtender October 10, 2008, 04:47:52 AM
Fixed by adding table in /application/views/dashboard/index.php
Replace this:
OldNew
:
<div class="dashboard">
<div class="dashWorkspace">
:
<div class="dashboard">
<table border=0><tr><td>
<div class="dashWorkspace">
:
</span><span class="description">
<?php if (active_project() instanceof Project && active_project()->getShowDescriptionInOverview()) echo '-&nbsp;' active_project()->getDescription();else echo '&nbsp;' ?>
</span>
</div>
<div class="dashActions">
<a class="internalLink" href="#" onclick="og.switchToOverview(); return false;">
<div class="viewAsList"><?php echo lang('view as list'?></div></a>
</div>
:
</span><span class="description">
<?php if (active_project() instanceof Project && active_project()->getShowDescriptionInOverview()) echo '-&nbsp;' active_project()->getDescription();else echo '&nbsp;' ?>
</span>
</div>
</td>
<td width="50%">
<div class="dashActions">
<a class="internalLink" href="#" onclick="og.switchToOverview(); return false;">
<div class="viewAsList"><?php echo lang('view as list'?></div></a>
</div>
</td>
</tr>
</table>
: Re: "view as list" and "All tasks" in Overview in IE 6
: cabeza October 10, 2008, 09:23:42 AM
Thank you xtender.
Included for 0.9.1.
Marcos