Birthdays - Joomla! Forum - community, help and support
hi joomlans,
i'm using rowan seymour's birthday module [http://forge.joomla.org/sf/projects/birthdays/] content indented right bullets.
i want such contents aligned left w/ no bullets. has come hack/improvement?
thanks & more power joomla!
i'm using rowan seymour's birthday module [http://forge.joomla.org/sf/projects/birthdays/] content indented right bullets.
i want such contents aligned left w/ no bullets. has come hack/improvement?
thanks & more power joomla!

it's relatively easy fix. need modify html list tags in mod_birthdays.php. want change list tag "ul" "dl"
find these lines:
// create list of birthdays
$content = "
echo $content;
and change them to:
// create list of birthdays
$content = "
echo $content;
i hope works did me.
find these lines:
// create list of birthdays
$content = "
- \n";
- '.birthdays_makeitem($birthday, $name_link, $reminder_format, $today_format, $tomorrow_format, $tooltip_format, $date_format)." \n";
foreach ($birthdays $birthday) {
$content .= '
}
$content .= "
echo $content;
and change them to:
// create list of birthdays
$content = "
- \n";
- '.birthdays_makeitem($birthday, $name_link, $reminder_format, $today_format, $tomorrow_format, $tooltip_format, $date_format)."\n";
}
$content .= "
foreach ($birthdays $birthday) {
$content .= '
echo $content;
i hope works did me.
Comments
Post a Comment