Moved content management links in footer to account for footer message

(DBOINCP-201)
This commit is contained in:
Tristan Olive 2015-07-09 01:15:49 -04:00
parent 7511371469
commit 21acaff5cd
2 changed files with 10 additions and 10 deletions

View File

@ -514,7 +514,7 @@ ul.links li a {
margin: 15px 0;
}
#content-management-links {
float: left;
margin: 12px 0;
}
#language {
font-size: 12px;

View File

@ -354,22 +354,22 @@
<div id="footer-info">
<div id="language"
style="background: url(<?php print base_path() . path_to_theme() . '/images/flags/' . $language->language . '.png'; ?>) no-repeat right;">
<?php print bts('Language'); ?>
</div>
<?php if ($footer_message): ?>
<div id="footer-message"><?php print $footer_message; ?></div>
<?php endif; ?>
<?php if (user_access('create page content') OR user_access('create news content')): ?>
<div id="content-management-links">
<?php print l(bts('Create content'), 'node/add'); ?>
</div>
<?php endif; ?>
<div id="language"
style="background: url(<?php print base_path() . path_to_theme() . '/images/flags/' . $language->language . '.png'; ?>) no-repeat right;">
<?php print bts('Language'); ?>
</div>
<div class="clearfix"></div>
<?php if ($footer_message): ?>
<div id="footer-message"><?php print $footer_message; ?></div>
<?php endif; ?>
<?php print $footer; ?>
</div>