Hi there.
A stupid question.
The navigation buttons to move in the different chapters of EZ Pages (Prev-Home-Next) are aligned in the center in column form. I want to align them in the center but in horizontal form.
The code in includes/templates/teplates_deafult/templates/tpl_page_default.php is:
<?php if (EZPAGES_SHOW_PREV_NEXT_BUTTONS=='2' and $counter > 1) { ?>
<div id="navEZPageNextPrev">
<a href="<?php echo $prev_link; ?>"><?php echo $previous_button; ?></a>
<?php echo zen_back_link() . $home_button; ?></a>
<a href="<?php echo $next_link; ?>"><?php echo $next_item_button; ?></a>
</div>
<?php } elseif (EZPAGES_SHOW_PREV_NEXT_BUTTONS=='1') { ?>
<div id="navEZPageNextPrev"><?php echo zen_back_link() . $home_button . '</a>'; ?></div>
<?php } ?>
<?php
What causes that the buttons are centered in vertical form. I can not change it to a horizontal line.![]()
Thank you



