Custom area classes

Permalink
Hi out there

Is it possible to make more than one area design (i.e. different background patterns and/or colours) available in the dropdown of the Custom Design toolbar?

I have added

public function getThemeAreaClasses()
    {
        return array(
            'Sektion 1' => array('lila')
        );
    }

to my pagetheme, works like a charme, but I would need more than one color option for Sektion 1.

Ideas?

pixeljunkie
 
okapi replied on at Permalink Best Answer Reply
okapi
What about:

public function getThemeAreaClasses()
    {
        return array(
            'Sektion 1' => array(
            'lila',
            'rosa',
            'schwarz'
            )
        );
    }
pixeljunkie replied on at Permalink Reply
pixeljunkie
Thanks for saving a poor blockhead - of course this works ;D