Remove music city logo from offline page

GK User
Thu Nov 17, 2011 9:35 pm
I am having trouble finding a way to remove the music city logo from the offline page. I normally go to system then offline.php but doing that didn't change anything.
User avatar
Senior Boarder

GK User
Fri Nov 18, 2011 8:36 am
Joomla 1.5 Version
PHP File: templatesgk_musicityoffline.php
CSS File: templatesgk_musicitycsssystemoffline.css
PHP Code: Line 41 to 45
Code: Select all
    <div id="gk-top">
        <h1 class="logo">
              <a href="index.php"><?php echo $mainframe->getCfg('offline_message'); ?></a>
        </h1>
    </div>

CSS : Line 37 - Logo used as background image for " h1 a "
Code: Select all
h1.logo a { background: url('../../images/style1/logo.png') no-repeat 0 0; display: block; height: 96px; margin: 0; text-indent: -999em; width:192px; }


Joomla 1.7 Version
PHP File: templatesgk_musicityoffline.php
CSS File: templatesgk_musicitycsssystemoffline.css

PHP Code: Line 34 to 38
Code: Select all
   <div id="gk-top">
       <h1 class="logo">
             <a href="index.php">Offline</a>
       </h1>
   </div>

CSS Code: Line 29 - Logo used as background image for " h1 a "
Code: Select all
h1.logo a { background: url('../../images/style1/logo.png') no-repeat 0 0; display: block; height: 96px; margin: 0; text-indent: -999em; width:192px; }


Depends on your joomla version deleting any one of "<a></a>" tags will remove link and logo.
Code: Select all
              <a href="index.php"><?php echo $mainframe->getCfg('offline_message'); ?></a>
         <a href="index.php">Offline</a>
User avatar
Platinum Boarder


cron