- Home
- Categorie
- Coding e Sistemistica
- Tutti gli altri Gestionali
- errore render panel
-
errore render panel
Ciao a tutti
Ho creato un custom_panel (che non posso allegare?), in fase di anteprima fa il render, dopo averlo salvato in home non fa il render e non vedo nulla solamente il footer tutto spostato in alto a destra.
Dichiaro di non essere un grande esperto, ho cercato online, ma sicuramente l'errore dipende dal mio codice, mi serve aiuto, sono ore e ore che lo rileggo e mi pare tutto a posto!
Grazie a tutti
Luca
-
questo è il mio .inc
<?php
/**- @file bricks_33_33_33_stacked.inc
- @author António P. P. Almeida [email protected]
- @date Fri Dec 17 05:00:37 2010
- @brief Panels plugin for the 33/33/33 stacked layout.
*/
// Plugin definition.
$plugin = array(
'title' => t('Bricks 33/33/33 stacked'),
'category' => t('Columns: 3'),
'icon' => 'bricks_33_33_33_stacked.png',
'theme' => 'bricks-33-33-33-stacked',
'css' => 'bricks_33_33_33_stacked.css',
'regions' => array(
'header_left' => t('Header left'),
'header_right' => t('Header right'),
'left_column' => t('Left column'),
'middle_column' => t('Middle column'),
'right_column' => t('Right column'),
),
);
-
questo il mio css
/* CSS file for the bricks 33/33/33 stacked layout. */
@import url('../../../css/base-grid.css');.header-left {
width: 66%;
}
.header-right {
width: 33%;
#padding-right: .5em;
}
.right-column {
width: 33%;
}
.middle-column {
width: 34%;
}
}
.left-column {
width: 33%;
}/* Margins taken from the Panels module plugins */
.lastUnit .inside {
margin: 0 0 .5em .5em;
}
.firstUnit .inside {
margin: 0 .5em .5em 0;
}
.unit .inside {
margin: 0 .5em .5em .5em;
}
-
questo il mio tpl
<!-- --html-helper-- -->
<div class="panel-display panel-bricks-33-33-33-stacked clear-block" <?php if (!empty($css_id)) { print "id="$css_id""; } ?>>
<div class="panel-panel line">
<div class="panel-panel unit header-left firstUnit">
<div class="inside">
<?php print $content['header_left']; ?>
</div>
</div>
<div class="panel-panel unit header-right lastUnit">
<div class="inside">
<?php print $content['header_right']; ?>
</div>
</div>
</div>
<div class="stessa_altezza">
<div class="panel-panel line">
<div class="panel-panel unit left-column firstUnit">
<div class="inside">
<?php print $content['left_column']; ?>
</div>
</div>
<div class="panel-panel unit middle-column">
<div class="inside">
<?php print $content['middle_column']; ?>
</div>
</div>
<div class="panel-panel unit right-column lastUnit">
<div class="inside">
<?php print $content['right_column']; ?>
</div>
</div>
</div>
</div>