Dear AS Team,
I found and fixed a little bug on this template which I would like to share with you.
If some more items are added to AS menu, reaching in this way 9 to 12 columns of width, and these items are visible only to registred users, when the users login, the main logo image is moved down of 55px, so moving itself out of the correct position.
I fixed this by replacing the content of original row 144 of main index.php.
Before:
<div id="logo" style="float: right; margin-top: 55px !important;">
Get an access to all 94 items designed and developed by AS Designing team plus all the future items
which will be released over the course of your club subscription.
Price starting from $59.00
I found and fixed a little bug on this template which I would like to share with you.
If some more items are added to AS menu, reaching in this way 9 to 12 columns of width, and these items are visible only to registred users, when the users login, the main logo image is moved down of 55px, so moving itself out of the correct position.
I fixed this by replacing the content of original row 144 of main index.php.
Before:
<div id="logo" style="float: right; margin-top: 55px !important;">
After:
<?php
$user =& JFactory::getUser();
if($user->get('guest') == 1) : ?>
<div id="logo" style="float: right; margin-top: 55px !important;">
<?php else: ?>
<div id="logo" style="float: right; margin-top: 0px !important;">
<?php endif; ?>
Thank You :)
Regards, AS Team.