| Joomla : Templates and Site Design Editing index.php |
Right above the logo picture, we can see there is a table row with the following HTML:
<tr>
<td height="19" background="templates/skyline/images/topmenubg.jpg">
<?php mosLoadModules ( 'top' ); ?>
</td>
</tr>
What this means is that this row holds a background image, plus the "top" position. Let's try hiding this row with a style="display:none" attribute.
| 1 2 3 4 5 6 7 8 9 10 11 12 |