Skip to content

Commit

Permalink
backporting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dougal Campbell committed Apr 22, 2011
1 parent 8fd53ea commit b146631
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion functions.php
Expand Up @@ -66,7 +66,7 @@
}

/** Tell WordPress to run initializr_setup() when the 'after_setup_theme' hook is run. */
add_action( 'after_setup_theme', 'initializr_setup' );
add_action( 'after_setup_theme', 'initializr_setup', 9 );

add_action( 'template_redirect', 'initializr_redirect' );

Expand All @@ -91,6 +91,8 @@
* @since Initializr 1.0
*/
function initializr_setup() {
// Load main stylesheet
wp_enqueue_style('initializr', get_template_directory_uri() . '/style.css');

// This theme styles the visual editor with editor-style.css to match the theme style.
add_editor_style();
Expand Down
4 changes: 3 additions & 1 deletion style.css
Expand Up @@ -320,11 +320,13 @@ aside#primary {
color:white;
background-color:#f16529;
margin-bottom:30px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow:0 0px 8px 0px #AAA;
-moz-box-shadow:0 0px 8px 0px #AAA;
box-shadow:0 0px 8px 0px #AAA;
}

#primary h3 {
font-size: 1.4em;
}
Expand Down

0 comments on commit b146631

Please sign in to comment.