@Oscarvisual, eso seria lo más facil,pero mi cliente quiere el slideshow ahí y con esas imágenes,lee algo sobre coaching y puede que le encuentres el sentido.
Tiene que aver algún modo de hace el font mas pequeño...¡sugerencias por favor!
--------------------------------------------------edit----------------------------------------
He estado indagando un poco por el código del módulo y he encontrado esto:
Código PHP:
Ver original// Variables
$mod_url = JURI::base() . 'modules/mod_ice_slider/';
$style = $params->get('style', 'tabularslide');
$iceslider_width = $params->get('iceslider_width', '540');
$iceslider_height = $params->get('iceslider_height', '230');
$iceslider_animation_interval = $params->get('animation_interval', '3000');
$iceslider_animation_duration = $params->get('animation_duration', '1000');
$iceslider_animation_transition = $params->get('animation_transition', 'linear');
$iceslider_animation_event = $params->get('animation_event', 'click');
$iceslider_box = 'iceslider_box_' . $GLOBALS['add_iceslider_box'];
$iceslider_item = 'iceslider_item_' . $GLOBALS['add_iceslider_item'];
$iceslider_hs = 'iceslider_hs_' . $GLOBALS['add_iceslider_hs'];
$iceslider_handels = 'iceslider_handels_' . $GLOBALS['add_iceslider_handels'];
$iceslider_previous = 'iceslider_previous_' . $GLOBALS['add_iceslider_previous'];
$iceslider_next = 'iceslider_next_' . $GLOBALS['add_iceslider_next'];
$iceslider_autoplay = $params->get('autoplay', 'false');
switch ($style) {
default:
require(JModuleHelper::getLayoutPath('mod_ice_slider', 'iceslider'));
}
Fijais en la variable $style y en el switch.
Pongo el archivo del require del switch por si ayuda:
Código PHP:
Ver original<?php
// @copyright Copyright (C) 2008 IceTheme. All Rights Reserved
// @license Copyrighted Commercial Software
// @author IceTheme (icetheme.com)
// no direct access
require_once (JPATH_SITE . '/components/com_content/helpers/route.php');
class modIceSliderHelper
{
function renderItem(&$item, &$params, &$access)
{
global $mainframe;
$item->text = $item->introtext;
$item->groups = '';
$item->readmore = (trim($item->fulltext) != ''); $item->metadesc = '';
$item->metakey = '';
$item->access = '';
$item->created = '';
$item->modified = '';
if ($params->get('readmore') || $params->get('link_titles'))
{
if ($params->get('intro_only'))
{
// Check to see if the user has access to view the full article
if ($item->access <= $user->get('aid', 0)) {
$linkOn = ContentHelperRoute::getArticleRoute($item->slug, $item->catslug);
} else {
$linkOn = JRoute::_('index.php?option=com_user&task=register');
}
}
$item->linkOn = $linkOn;
}
$results = $mainframe->triggerEvent('onAfterDisplayTitle', array (&$item, &$params, 1)); $item->afterDisplayTitle = trim(implode("\n", $results));
$results = $mainframe->triggerEvent('onBeforeDisplayContent', array (&$item, &$params, 1)); $item->beforeDisplayContent = trim(implode("\n", $results));
require(JModuleHelper::getLayoutPath('mod_ice_slider', '_item'));
}
function getList(&$params, &$access)
{
global $mainframe;
$db =& JFactory::getDBO();
$user =& JFactory::getUser();
$aid = $user->get('aid', 0);
$catid = (int) $params->get('catid', 0);
$items = (int) $params->get('items', 0);
$order = $params->get('order', 'o_asc');
$contentConfig = &JComponentHelper::getParams( 'com_content' );
$noauth = !$contentConfig->get('shownoauth');
jimport('joomla.utilities.date');
$date = new JDate();
$now = $date->toMySQL();
$nullDate = $db->getNullDate();
// Ordering
switch ($order) {
case 'm_dsc':
$ordering = 'a.modified DESC, a.created DESC';
break;
case 'h_dsc':
$ordering = 'a.hits DESC, a.created DESC';
break;
case 'c_dsc':
$ordering = 'a.created DESC';
break;
case 'o_asc':
default:
$ordering = 'a.ordering';
break;
}
// Query to determine article count
$query = 'SELECT a.*,' .
' CASE WHEN CHAR_LENGTH(a.alias) THEN CONCAT_WS(":", a.id, a.alias) ELSE a.id END as slug,'.
' CASE WHEN CHAR_LENGTH(cc.name) THEN CONCAT_WS(":", cc.id, cc.name) ELSE cc.id END as catslug'.
' FROM #__content AS a' .
' INNER JOIN #__categories AS cc ON cc.id = a.catid' .
' INNER JOIN #__sections AS s ON s.id = a.sectionid' .
' WHERE a.state = 1 ' .
($noauth ? ' AND a.access <= ' .(int) $aid. ' AND cc.access <= ' .(int) $aid. ' AND s.access <= ' .(int) $aid : '').
' AND (a.publish_up = "'.$nullDate.'" OR a.publish_up <= "'.$now.'" ) ' .
' AND (a.publish_down = "'.$nullDate.'" OR a.publish_down >= "'.$now.'" )' .
' AND cc.id = '. $catid .
' AND cc.section = s.id' .
' AND cc.published = 1' .
' AND s.published = 1' .
' ORDER BY ' . $ordering;
$db->setQuery($query);
$rows = $db->loadObjectList();
if ($order == 'random') shuffle($rows);
}
}
creo que la parte que interesa es la del principio en este archivo.
He probado modificando las variables y cambiando rutas del style pero nada...
Alomejor con esto entre todos podemos modificar el font.
¿Quiza me estoy metiendo mucho en PHP y deberia preguntar en su foro?