Uwe Kreuzahler
Uwe Kreuzahler

Reputation: 71

center joomla menu without changing the responsive template

I can not get the menu div centered inside the header without changing the responsive menu structure.

I use a template from JA and the client wants to have the logo centered above the menu

I was able to get the logo centered within the main div but the menu is sticking to the left and i think i tried almost every possible solution.

here is the link to the site

http://dev.turnim.com/clients/antonio_j3/

Upvotes: 2

Views: 1453

Answers (1)

Josh Crozier
Josh Crozier

Reputation: 240858

Here is one option..

.nav-collapse.collapse {
    text-align: center;
}
.t3-megamenu {
    display: inline-block;
}

Tested in the browser.. it works.

Upvotes: 1

Related Questions