/*
Theme Name: Total Child
Theme URI: http://totalwptheme.com
Description: Total WordPress theme example child theme.
Author: AJ Clarke
Author URI: http://totalwptheme.com
Template: Total
Version: 1.1
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/*------------------------------------------------------------------
[Topbar]
-------------------------------------------------------------------*/
#top-bar-wrap { border-bottom: 1px solid #eee; font-size: 0.923em; }
#top-bar { position: relative; padding: 0px 0; }
#top-bar a { color: #555 }
.top-bar-left { float: left; }
.top-bar-right { float: right; }
.top-bar-centered { float: none; text-align: center; }


// Load translation files from your child theme instead of the parent theme
function my_child_theme_locale() {
    load_child_theme_textdomain( 'total', get_stylesheet_directory() . '/languages' );
}
add_action( 'after_setup_theme', 'my_child_theme_locale' );