ipfire theme: Use div align for center

Revert change to make openbox produce validating html,
when center alignment for box is wanted.

I have not been able to find css solution for
properly aligning the div horisontally.
This commit is contained in:
Alf Høgemark
2014-02-26 18:37:57 +01:00
parent 69776cc42f
commit 480f354d89

View File

@@ -238,7 +238,12 @@ sub openbox {
$align = $_[1];
$caption = $_[2];
print "<div class='post' style='text-align:$align;'>\n";
if($align eq 'center') {
print "<div class='post' align='center'>\n"
}
else {
print "<div class='post'>\n";
}
if ($caption) {
print "<h2>$caption</h2>\n";