Food menu Title not centering correctly?
-
Hi, when choosing to center the food menu item title, it does not center it correctly? By playing with the Firefox theme inspector, if could be something to do with the flex css code? When I change the display element to display: -webkit-inline-flex; it works and centers the menu item heading correctly. Please confirm if this is correct or if I should add something else. Thanks
.menu-price-heading {
display: -webkit-inline-flex !important;
}
Please advise.
Attachments:
You must be
logged in to view attached files.
Hi,
By default, our price menu element has the layout with menu title aligned to left and menu price located on the right side. If you don’t want to use the price on price menu, you need to hide it container via CSS (https://gyazo.com/f382cc68c8b7149a230d25309364f9a8) to make the menu title aligned straight to the centre.
Try to use the following code snippet.
.woodmart-menu-price .menu-price-price {
display: none;
}
Regards