Jak rozciągnąć linki w jednej linii na całą długość by były w równych odstępach?
Mam tak w pliku:
<?php
$info_box_contents = array(); $info_box_contents[] = array('text' => BOX_HEADING_INFORMATION
);
new infoBoxHeading($info_box_contents, true, true);
$info_box_contents = array(); $info_box_contents[] = array('text' => '<a href="' . tep_href_link
(FILENAME_SHIPPING
) . '"> ' . BOX_INFORMATION_SHIPPING
. '</a>' . '<a href="' . tep_href_link(FILENAME_PRIVACY) . '"> ' . BOX_INFORMATION_PRIVACY . '</a>' .
'<a href="' . tep_href_link(FILENAME_CONDITIONS) . '"> ' . BOX_INFORMATION_CONDITIONS . '</a>' .
'<a href="' . tep_href_link('loyalty.php', '', 'NONSSL') . '" > Program Lojalnościowy</a>' .
'<a href="' . tep_href_link(FILENAME_CONTACT_US) . '"> ' . BOX_INFORMATION_CONTACT . ' </a>');
new infoBox($info_box_contents);
?>