-1

Hi people how can i center the output of:

<?php echo do_shortcode("[aps-counter]");?>

This line puts a counter out but it is left centered. Thank you very much !

Hakki Uzel
  • 39
  • 6

1 Answers1

4

Simply wrap the output in a container and use css to center it like so:

<?php echo "<div style='margin:0 auto;'>" . do_shortcode("[aps-counter]") . "</div>"; ?>
Poiz
  • 7,611
  • 2
  • 15
  • 17