Rafael Lins
New Member
How do I change the logo text to a logo image?
Thanks!
Thanks!
header.header .logo {
background: url('https://placeholdit.imgix.net/~text?w=100&h=20');
visibility: hidden;
}
Send me the non-working css file with all that pertains to it and what you want, and I will attempt a fix.Anyone can help with a complete/working css file for this ?
.header .logo {
background: url('http://www.YourSite.com/mwz_path/.../assets/css/pic200x50.jpg');
visibility: visible;
}
Not without going down to PHP Coding, maybe adding a "settings" area in /customer, where they can set the logo, maybe choose the skin and so on
<header class="header">
<a href="<?php echo $this->createUrl('dashboard/index');?>" class="logo icon">
<?php echo ($text = Yii::app()->options->get('system.customization.customer_logo_text')) && !empty($text) ? CHtml::encode($text) : Yii::t('app', 'Customer area');?>
</a>
<header class="header">
<a href="<?php echo $this->createUrl('dashboard/index');?>" class="logo icon">
<img src="http://my-domain-name.com/images/logo.png" alt="" width="200" height="45">
</a>
<header class="header">
<a href="<?php echo $this->createUrl('dashboard/index');?>" class="logo icon">
<img src="http://my-domain-name.com/images/logo.png" alt="" style="height:100px;width:100px">
</a>
Hi