How can i center the three menu's nice?

Solved

How can i center the three menu's nice?

flaner
Tourist
42 0 16

How can i center the collections and about nice next to the shop button?Scherm­afbeelding 2025-03-13 om 21.46.10.png

Accepted Solution (1)

thescriptflow
Shopify Partner
372 26 55

This is an accepted solution.

In order to center it paste the followinf code in the end of base.css file.

 

summary.list-menu__item {
     padding-right: 1.2rem !important; 
}

 

After that you will get this result.

qasimdevloper_0-1741899334432.png

 

- Need a Shopify Specialist? Chat on WhatsApp +447828078063

- Boost Your Sales with Affiliate Marketing - UpPromote: Affiliate & Referral


- If my solution was helpful, mark it as a solution and hit the like button!

View solution in original post

Replies 3 (3)

micheal5253
Visitor
1 0 1

.menu {
display: flex;
justify-content: center; /* Centers the menu items */
padding: 10px; /* Optional: Adds padding */
}

.menu ul {
list-style-type: none; /* Removes default list styles */
padding: 0; /* Removes padding from the list */
margin: 0; /* Removes margin from the list */
display: flex; /* Displays list items in a row */
}

.menu li {
margin: 0 15px; /* Adjusts space between menu items */
}

thescriptflow
Shopify Partner
372 26 55

This is an accepted solution.

In order to center it paste the followinf code in the end of base.css file.

 

summary.list-menu__item {
     padding-right: 1.2rem !important; 
}

 

After that you will get this result.

qasimdevloper_0-1741899334432.png

 

- Need a Shopify Specialist? Chat on WhatsApp +447828078063

- Boost Your Sales with Affiliate Marketing - UpPromote: Affiliate & Referral


- If my solution was helpful, mark it as a solution and hit the like button!

flaner
Tourist
42 0 16

Hi there! It worked, thank you!