Skip to:
Content

BuddyPress.org

Changeset 3696


Ignore:
Timestamp:
01/10/2011 08:58:10 PM (15 years ago)
Author:
djpaul
Message:

Move footer site generator info out of widget area. Props modemlooper for initial patch, fixes #3004

Location:
trunk/bp-themes/bp-default
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-themes/bp-default/_inc/css/default.css

    r3687 r3696  
    333333    background: #fff;
    334334    overflow: hidden;
    335     margin-bottom: 20px;
    336335}
    337336
     
    22372236
    22382237#footer {
    2239     margin-bottom: 20px;
     2238    margin: 20px 0;
     2239}
     2240
     2241#footer-widgets {
     2242    background: #fff;
     2243    border-bottom: 1px solid #e0e0e0;
     2244    border-right: 1px solid #e0e0e0;
     2245    border-radius: 6px;
    22402246    padding: 19px;
    2241     border-radius: 6px;
    22422247    -moz-border-radius: 6px;
    22432248    -webkit-border-radius: 6px;
    2244     border-right: 1px solid #e0e0e0;
    2245     border-bottom: 1px solid #e0e0e0;
    2246     background: #fff;
    22472249}
    22482250
    22492251#site-generator {
     2252    margin: 20px 20px;
    22502253    text-align: center;
    22512254    color: #bbb;
  • trunk/bp-themes/bp-default/footer.php

    r3506 r3696  
    55
    66        <div id="footer">
    7             <?php get_sidebar( 'footer' ) ?>
     7            <?php if ( is_active_sidebar( 'first-footer-widget-area' ) || is_active_sidebar( 'second-footer-widget-area' ) || is_active_sidebar( 'third-footer-widget-area' ) || is_active_sidebar( 'fourth-footer-widget-area' ) ) : ?>
     8                <div id="footer-widgets">
     9                    <?php get_sidebar( 'footer' ) ?>
     10                </div>
     11            <?php endif; ?>
    812
    913            <div id="site-generator" role="contentinfo">
Note: See TracChangeset for help on using the changeset viewer.