Hi,
When I try to print a page the logo does not show. Is there a way to fix this.
Thanks for you help.
Dita
$url = clone(JURI::getInstance());
$url = clone(JURI::getInstance());
$logo_as_image = ($this->params->get("logo_as_image", 1) == 1) ? true : false;
<a href="<?php echo $this->baseurl;?>" class="nounder" id="logo"></a>
<a id="logo<?php echo ($logo_as_image) ? '' : '_styled'; ?>" href="./">
<?php if($logo_as_image) : ?>
<img src="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template?>/images/logo.png" alt="Logo" />
<?php endif; ?> </a>
<param name="logo_as_image" type="list" default="0" label="Logo as image" description="If you want to have normal image instead of link with background - enable this option. IMPORTANT: when you enable this option, style change won't change your logo till page refresh">
<option value="1">Enabled</option>
<option value="0">Disabled</option>
</param>
logo_as_image=0
#logo {
height: 85px;
width:281px;
display: block;
float: left;
}
a#logo,
a#logo_styled {
float:left;
width:auto;
display:block;
}
/* Here you can change width or height of your logo if you've disabled option "logo as image" */
a#logo_styled {
width:281px;
height:85px;
background:transparent url('../images/logo.png') no-repeat 0 0; }
#bg_top {
margin: 0 6px;
}
#bg_top {
margin: 0 6px;
margin-bottom: 125px;
}