Skip to content

Commit

Permalink
Adding minor styling amends and functions.php
Browse files Browse the repository at this point in the history
  • Loading branch information
pragmatic-web committed Mar 3, 2015
1 parent a2a66a2 commit 8aed52c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
14 changes: 14 additions & 0 deletions wp-content/themes/wordupbrighton/functions.php
@@ -0,0 +1,14 @@
<?php
/*
* Child theme functions
*
*/

add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array('parent-style')
);
}
10 changes: 8 additions & 2 deletions wp-content/themes/wordupbrighton/style.css
Expand Up @@ -13,5 +13,11 @@
*/

.meetup-widget-event-list .wpm-date-display {
display: none;
}
background-color: #21759b;
color: white;
}

.widget_twitter ul,
.widget_twitter li {
list-style: inside none none;
}

0 comments on commit 8aed52c

Please sign in to comment.