openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit c4cbc19335100f755fcf52202e1c93d721170ff7
parent 73ed8f892c1a919f113b4d0d7da0139cb9c76a3c
Author: dankert <dankert@laptop-jan>
Date:   Wed, 20 Mar 2013 19:27:13 +0100

Logo für eine View am Formular ausrichten.

Diffstat:
themes/default/css/openrat.css.php | 12++----------
themes/default/include/html/logo.inc.php | 17+++++++++++++++--
2 files changed, 17 insertions(+), 12 deletions(-)

diff --git a/themes/default/css/openrat.css.php b/themes/default/css/openrat.css.php @@ -458,11 +458,6 @@ body.main table.main td.window td padding:4px; } -/* Logo */ -table.main td.window td.logo -{ - padding:10px; -} /* Action-Button */ body.main table.main td.window td.act @@ -547,17 +542,14 @@ td.logo margin:0px; } -h2.logo +div.logo h2 { font-family:Verdana; font-weight:normal; font-size:24px; - margin-left:110px; } - -p.logo +div.logo p { - margin-left:110px; font-family:Verdana; font-size:13px; } diff --git a/themes/default/include/html/logo.inc.php b/themes/default/include/html/logo.inc.php @@ -1 +1,15 @@ -<img src="<?php echo $image_dir.'logo_'.$attr_name.IMG_ICON_EXT ?>" border="0" align="left" /><h2 class="logo"><?php echo langHtml('logo_'.$attr_name) ?></h2><p class="logo"><?php echo langHtml('logo_'.$attr_name.'_text') ?></p>- \ No newline at end of file +<div class="line logo"> + <div class="label"> + <img src="<?php echo $image_dir.'logo_'.$attr_name.IMG_ICON_EXT ?>" + border="0" /> + </div> + <div class="input"> + <h2> + <?php echo langHtml('logo_'.$attr_name) ?> + </h2> + <p> + <?php echo langHtml('logo_'.$attr_name.'_text') ?> + </p> + + </div> +</div>