Hi

Using Drupal (7.22) Kickstart (commerce_kickstart-7.x-2.6), where do I get to move the branding zone so it's below the menu zone? ie. I want to move the menu up.

Do the declarations in the info file determine it by their order? I've swapped so it says:
zones[menu] = Menu
zones[branding] = Branding

&
regions[menu] = Menu
regions[branding] = Branding

but the branding zone is still rendered above the menu.

It's swapped in the blocks admin page, but not .. in the website page itself.

I can't see any positional CSS, it's not Javascript that's doing it .. what am I missing?

Cheers
J

Comments

vm’s picture

the themes in commerce kickstart are subthemes of omega. Thus, you should inspect the theme settings (administer -> appearance) and omega documentation for how to work with the ui of the theme.

nevets’s picture

The .info only declares the available regions.

The page.tpl.php and css determines the visible order. (In some themes there are setting on the theme page that allow you to change the order).

JAScarb’s picture

Aye, I'm in the page.tpl.php but that just outputs print render($page['header']); which contains all the stuff I want to switch around.

I'll check into Omega ...

vm’s picture

you may need to revert your changes to the theme .info file

goto admin/appearance/settings/YOURTHEME
click on the Zone and region configuration vertical tab

inspect the settings in the header section for each zone within the section. You will want to focus on the weight for each region/zone that you want to move within each of the respective configurations

JAScarb’s picture

Bingo, that's the one.

You're a star, thank-you so much

J

JAScarb’s picture

Also thanks for guiding me to the Omega documentation