Re: How can I customize a mega menu in my new eCommerce platform?

How can I customize a mega menu in my new eCommerce platform?

altar_studio
Visitor
1 0 0

Hello,

I've recently transitioned from Squarespace to Shopify and I'm currently working on replicating specific elements, such as my mega menu.

Customizing the mega menu to match my Squarespace website has proven to be more challenging than I initially anticipated. My goal is to incorporate an additional column within the mega menu, featuring an image along with some additional links.

The image below illustrates what I'm aiming to recreate, which is the original Squarespace mega menu.

 

Screenshot 2023-09-19 at 16.09.15.png


So far this is what my mega menu in Shopify looks like: 

 

Screenshot 2023-09-19 at 16.10.03.png

I would greatly appreciate some assistance with coding this. Thank you very much.


– Leroy

Replies 4 (4)

romartiny
Shopify Partner
34 8 8

Hi. In this case, you will need a developer with experience to do such a thing. I've worked with one of these, I'll briefly tell you what and how it should be. If you understand the theme code, then all you need to know is:
You need to divide the window that is shown when you click on the button into 2 parts.
To add a button:

 

<button id="corner-button"></button>.
#corner-button {
position: fixed;
top: 20px;
right: 20px;
background-color: #007bff;
color: white;
border: none;
padding: 10px 20px;
cursor: pointer;
z-index: 9999;
}

 


In 1 part you will have text and let's say collections (or by tags).
In the 2nd part, you will have a picture in the background (example):

 

<div class="background-div"></div>.
.background-div {
width: 100%;
height: 300px;
background-image: url('url.jpg');
background-size: cover;
background-position: center;
}

 


To get all the collections:

 

{% for collection in collections %}
<a href="{{ collection.url }}">{{ collection.title }}</a>
{% endfor %}

 


Next, you style and add <script></scrip for the button.

I hope this has helped you.

Romartiny | Software Engineer
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution

Natasha-Saed
Shopify Partner
453 50 83

I recommend you reach out with Made4uo-Ribe  She is professional in working with mega menu.

 

 

 

If my solution helped you don't forget to accept it to help others.
===================================================================
And if you really like my support share a cup of coffee with me paypal.me/freemindsint

michael-helium
Shopify Partner
378 5 185

Hi @altar_studio - we have some pre-made templates in the Meteor Mega Menu app that would help you recreate this look. Check out our "Riviera" or "Fortress" template in particular. FYI, we offer a 7-day free trial.

Michael, COO @ Helium
- Customer Fields ✪✪✪✪✪ (357 reviews)
- Meteor Mega Menu ✪✪✪✪✪ (281 reviews)
- Strike Automatic Discounts NEW!

BuriedInWork
Tourist
25 0 2

Hey there. I'm in a similar boat and was wondering if you were able to come up with a solution so menus matched across both shopify and squarespace. Thanks!