Close

Placing logo into Mega Menu bar

fun123
10 years ago
#2995 Quote
Avatar
  • 19
What i have is this:
[URL=http://imageupload.co.uk/][/URL]
What i need is this:
[URL=http://imageupload.co.uk/][/URL]
So conclusion is, i need logo placed on mega menu, and also to be clickable to send user to home page when clicked. Thanks a lot in advance
fun123
10 years ago
#2999 Quote
Avatar
  • 19
anyone?
Boyko
10 years ago
#3003 Quote
Avatar
  • Moderator
  • 1570
Hi fun123,


You can modify the view of the Mega Menu plugin and add your logo there.
Plugins\SevenSpikes.Nop.Plugins.MegaMenu\Views\MegaMenu\MegaMenu.cshtml

To make it a link to the Home page you can use this code:
<a href="@Url.RouteUrl("HomePage")">The image to your logo here</a>


Then it is a matter of styling to make it looks nice.

Hope this helps!
Regards,
Nop-Templates.com Team
fun123
10 years ago
#3014 Quote
Avatar
  • 19
Boyko wrote:
Hi fun123,


You can modify the view of the Mega Menu plugin and add your logo there.
Plugins\SevenSpikes.Nop.Plugins.MegaMenu\Views\MegaMenu\MegaMenu.cshtml

To make it a link to the Home page you can use this code:
<a href="@Url.RouteUrl("HomePage")">The image to your logo here</a>


Then it is a matter of styling to make it looks nice.

Hope this helps!


Solved, thanks