From 675226f22cc50721ae29f57e5bedc87577d3361b Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Thu, 11 Jun 2015 16:20:54 -0400 Subject: [PATCH] Style changes for recipes front-end: using more width --- scss/plugins/_recipe.scss | 3 ++ single.php | 59 +++++++++++++++++++-------------------- 2 files changed, 31 insertions(+), 31 deletions(-) diff --git a/scss/plugins/_recipe.scss b/scss/plugins/_recipe.scss index 5e3ba02..fbe28e6 100644 --- a/scss/plugins/_recipe.scss +++ b/scss/plugins/_recipe.scss @@ -47,3 +47,6 @@ .wpurp-recipe-ingredient { list-style: outside none none !important } +.wpurp-container { + max-width: 100% !important; +} \ No newline at end of file diff --git a/single.php b/single.php index 4adc0be..e562c4c 100644 --- a/single.php +++ b/single.php @@ -3,46 +3,43 @@
-
-
+
-
-
> - -
- $cat->name, 'slug' => $cat->slug ); - echo ''. $cat->name .', '; - } +
> + +
+ $cat->name, 'slug' => $cat->slug ); + echo ''. $cat->name .', '; } - $post_tags = wp_get_post_tags( get_the_ID() ); - $tags = array(); - if (has_tag( )) { - echo ' and tagged '; - foreach($post_tags as $t){ - $tag = get_tag( $t ); - $tags[] = array( 'name' => $tag->name, 'slug' => $tag->slug ); - echo ''. $tag->name .', '; - } + } + $post_tags = wp_get_post_tags( get_the_ID() ); + $tags = array(); + if (has_tag( )) { + echo ' and tagged '; + foreach($post_tags as $t){ + $tag = get_tag( $t ); + $tags[] = array( 'name' => $tag->name, 'slug' => $tag->slug ); + echo ''. $tag->name .', '; } - echo ' on '; - echo ' ' . the_time('F jS, Y') . ''; - ?> -
-
-
+ } + echo ' on '; + echo ' ' . the_time('F jS, Y') . ''; + ?> + +
-- 2.17.1