On the Demo page I notice you are using a nice layout called Phoenix. But I can't seem to find it anywhere. Is it available?

Comments

uschi_glas’s picture

i have got the restaurant distribution installed. my default theme is "plate".
there is also no panel-layout phoenix but i wanted to have the full screen slide exactly the same as on the demo page.
my active panel-layout is radix-brown .
so i changed following lines in profiles/restaurant/modules/contrib/radix_layouts/plugins/layouts/radix_brown/radix-brown.tpl.php starting in line 16

<div class="container">
    <div class="row-fluid">
      <div class="span8 content panel-panel">
        <div class="panel-panel-inner">
          <?php print $content['slider']; ?>
        </div>
      </div>
      <div class="span4 sidebar panel-panel">
        <div class="panel-panel-inner">
          <?php print $content['slidergutter']; ?>
        </div>
      </div>
    </div>
  </div>

to

  <div class="slider-wrapper">
    <div class="row-fluid">
      <div class="span12 content panel-panel">
        <div class="panel-panel-inner">
          <?php print $content['slider']; ?>
        </div>
      </div>
    </div>
  </div>
jaxpax’s picture

Thanks a bunch @uschi_glas

I made the change you mentioned and it works like a charm. I use the chef theme btw...

uschi_glas’s picture

you're welcome.

lsolesen’s picture

Why not change to using another panel layout instead of changing the module code?

uschi_glas’s picture

There is no change of the module code. It's "only" the template file. if you want to be 100% safe and correct you can also copy the 'radix-brown.tpl.php' to your theme directory to overwrite the original template.