X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Futil.php;h=448c049c04827ad98ab88b7aba2578da338856d7;hb=67baa38c42cf602889f08f83f2be58b085a447bd;hp=268c9ef2c97d22be0ae7f6d65b8beacfbe66f913;hpb=e0cce107bf148cf4282e8262845b746baec279ce;p=quix0rs-gnu-social.git diff --git a/lib/util.php b/lib/util.php index 268c9ef2c9..448c049c04 100644 --- a/lib/util.php +++ b/lib/util.php @@ -152,7 +152,8 @@ function common_text($txt) { function common_license_block() { global $config, $xw; - common_element_start('div', 'license'); + common_element_start('p', 'license greenBg'); + common_element_start('span', 'floatLeft width25'); common_element_start('a', array('class' => 'license', 'rel' => 'license', href => $config['license']['url'])); @@ -160,13 +161,16 @@ function common_license_block() { 'src' => $config['license']['image'], 'alt' => $config['license']['title'])); common_element_end('a'); + common_element_end('span'); + common_element_start('span', 'floatRight width75'); common_text(_t('Unless otherwise specified, contents of this site are copyright by the contributors and available under the ')); common_element('a', array('class' => 'license', 'rel' => 'license', href => $config['license']['url']), $config['license']['title']); common_text(_t('. Contributors should be attributed by full name or nickname.')); - common_element_end('div'); + common_element_end('span'); + common_element_end('p'); } function common_head_menu() {