Change Position Title <-> Tabs


Author Message
Chris

Posted: 9/11/2010
Quote message 

Hey!
I'd like to show the node title aboth the tabs. Artisteer shows per default first the tabs and then the node title. Can anyone help me to fix this?
Nice Greedings,
Chris
 
Lawrence

Posted: 9/11/2010
Quote message 

Go to the generated page.tpl.php file. You'll find these. If your output is slightly different, you can search for "tabs" and you'll see something similar.

<?php if (!empty($breadcrumb)) { echo $breadcrumb; } ?>
<?php if (!empty($title)): print '<h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. $title .'</h2>'; endif; ?>
<?php if (!empty($tabs)) { echo $tabs.'<div class="cleared"></div>'; }; ?>
<?php if (!empty($tabs2)) { echo $tabs2.'<div class="cleared"></div>'; } ?>

Not all generated outputs are the same, so you'll have to know a little in using div tags and organizing your php code. It's not too difficult. Rearrange how you like. :-)