From 480f354d894e212e9dd6f66936c2ca592e1c549b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alf=20H=C3=B8gemark?= Date: Wed, 26 Feb 2014 18:37:57 +0100 Subject: [PATCH] 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. --- html/html/themes/ipfire/include/functions.pl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/html/html/themes/ipfire/include/functions.pl b/html/html/themes/ipfire/include/functions.pl index 86b1b75ba2..f71181e632 100644 --- a/html/html/themes/ipfire/include/functions.pl +++ b/html/html/themes/ipfire/include/functions.pl @@ -238,7 +238,12 @@ sub openbox { $align = $_[1]; $caption = $_[2]; - print "
\n"; + if($align eq 'center') { + print "
\n" + } + else { + print "
\n"; + } if ($caption) { print "

$caption

\n"; -- 2.39.5