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>