How to Change the Admin Header?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
9 years ago
I am working on a new site that will make use of the multi-vendor features of the system. I am worried about the vendors logging into the admin and seeing the nopCommerce header. What is the easiest way to alter it? From what I can tell the nopCommerce logo is part of the entire banner. It would be nice if I could just swap out the logo with a transparent store logo.
9 years ago
Hi Blake,

You can replace the default logo of admin area by editing of the /Administration/Content/images/logo.gif file. Please also see ".header .logo" style in the \Administration\Content\styles.css file (logo sizes are specified there)
5 years ago
How can I change this operation in version 4.10?
5 years ago
Logos in nopCommerce_4.10_Source\Presentation\Nop.Web\wwwroot\css\admin\images

and css in nopCommerce_4.10_Source\Presentation\Nop.Web\wwwroot\css\admin\styles.css

.main-header .logo-lg {
    background: url(images/logo.png) no-repeat 50% 50%;
    height: 50px;
}
.main-header .logo-mini {
    background: url(images/logo-mini.png) no-repeat 50% 50%;
    height: 50px;
}
5 years ago
Yidna wrote:
Logos in nopCommerce_4.10_Source\Presentation\Nop.Web\wwwroot\css\admin\images

and css in nopCommerce_4.10_Source\Presentation\Nop.Web\wwwroot\css\admin\styles.css

.main-header .logo-lg {
    background: url(images/logo.png) no-repeat 50% 50%;
    height: 50px;
}
.main-header .logo-mini {
    background: url(images/logo-mini.png) no-repeat 50% 50%;
    height: 50px;
}



I'm using No source, already on server. Where can I change since I've already tried the above
5 years ago
Same relative locations \website\wwwroot\css\admin\images
Did you clear do a Admin - Clear cache
and clear your browser cache ?
5 years ago
It's on which line of code?
5 years ago
Hi , you can check on this in no source or source

wwwroot\css\admin: styles.css

in this line no . 654
.main-header .logo-lg
you can see this properties and you can change as your requirement
5 years ago
I finally got solution. I was facing same issue.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.