End of Support for Joomla 3 - Forum closed
Universal 2 Module in Bottom A in 50 - 50 Verteilung
- bkarimi
- Topic Author
- Visitor
- Thank you received: 0
Ich möchte in der Position Bottom A 2 Module platzieren in einer 50:50 Verteilung. Ich bekomme aber eine 66:33 Verteilung. Ich denke, es hat mit Warp EQUAL zu tun, aber wo muss ich das innerhalb von Joomla anpassen??
by bkarimi
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
Replied by joomlaplates on topic 2 Module in Bottom A in 50 - 50 Verteilung
Posted 9 years 1 month ago #10163
Welches Template, bitte wählen sie in Zukunft das deutsche Forum
Dokumentation:
www.joomlaplates.de/dokumentation.html
www.joomlaplates.de/dokumentation.html
by joomlaplates
Please Log in or Create an account to join the conversation.
- bkarimi
- Topic Author
- Visitor
- Thank you received: 0
Replied by bkarimi on topic 2 Module in Bottom A in 50 - 50 Verteilung
Posted 9 years 1 month ago #10165
Das Universal Template.
by bkarimi
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
Replied by joomlaplates on topic 2 Module in Bottom A in 50 - 50 Verteilung
Posted 9 years 1 month ago #10166
Live Url bitte!
Und bitte achten sie darauf, dass sie keine fixe Größenangaben von Bildern in ihrem Module haben.
Und bitte achten sie darauf, dass sie keine fixe Größenangaben von Bildern in ihrem Module haben.
Dokumentation:
www.joomlaplates.de/dokumentation.html
www.joomlaplates.de/dokumentation.html
by joomlaplates
Please Log in or Create an account to join the conversation.
- bkarimi
- Topic Author
- Visitor
- Thank you received: 0
Replied by bkarimi on topic 2 Module in Bottom A in 50 - 50 Verteilung
Posted 9 years 1 month ago #10167
Es geht um xxx und die Module News&Events und Projects. Absolute Größenangaben sind nicht dabei.
Ich habe einen Override von mod_article_category/default.php:
<?php $images = json_decode($item->images); ?>
<div class="image-wrapper">
<img class="image_intro" src="<?php echo $images->image_intro; ?>" alt="<?php echo $images->image_intro_alt; ?>"/>
</div>
Um die Bilder in die Liste einzubinden. Aber auch ohne Bilder bleibt die Aufteilung 66:33.
Ich habe einen Override von mod_article_category/default.php:
<?php $images = json_decode($item->images); ?>
<div class="image-wrapper">
<img class="image_intro" src="<?php echo $images->image_intro; ?>" alt="<?php echo $images->image_intro_alt; ?>"/>
</div>
Um die Bilder in die Liste einzubinden. Aber auch ohne Bilder bleibt die Aufteilung 66:33.
Last Edit:9 years 4 weeks ago
by bkarimi
Last edit: 9 years 4 weeks ago by bkarimi.
Please Log in or Create an account to join the conversation.
- bkarimi
- Topic Author
- Visitor
- Thank you received: 0
Replied by bkarimi on topic 2 Module in Bottom A in 50 - 50 Verteilung -SOLVED
Posted 9 years 4 weeks ago #10222
Die Lösung findet sich in jp-universal/warp/layouts/modules/layouts/double.php:
switch (count($modules)) {
case 1:
printf('<div class="grid-box width100 grid-h">%s</div>', $modules[0]);
break;
case 2:
printf('<div class="grid-box width50 grid-h">%s</div>', $modules[0]);
printf('<div class="grid-box width50 grid-h">%s</div>', $modules[1]);
break;
/* original:
case 2:
printf('<div class="grid-box width66 grid-h">%s</div>', $modules[0]);
printf('<div class="grid-box width33 grid-h">%s</div>', $modules[1]);
break;
*/
switch (count($modules)) {
case 1:
printf('<div class="grid-box width100 grid-h">%s</div>', $modules[0]);
break;
case 2:
printf('<div class="grid-box width50 grid-h">%s</div>', $modules[0]);
printf('<div class="grid-box width50 grid-h">%s</div>', $modules[1]);
break;
/* original:
case 2:
printf('<div class="grid-box width66 grid-h">%s</div>', $modules[0]);
printf('<div class="grid-box width33 grid-h">%s</div>', $modules[1]);
break;
*/
by bkarimi
Please Log in or Create an account to join the conversation.
Moderators: joomlaplates