I want to add a float right style to this php echo
<?php echo $PAGE->button; ?>
<?php } ?>
In HTML:
<div class="foo">
<?php echo $PAGE->button; ?>
<?php } ?>
</div>
And in CSS:
.foo {
/* some styles here */
}
Or just simply, but not recommended inline styling:
<?php echo "<div style='float: right;'>". $PAGE->button ."</div>"; ?>
<?php echo "<div style=\"float:right;\">" . $PAGE->button . "</div>"; ?>
<?php } ?>
This will float the entire button to the right
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With