diff --git a/app/assets/stylesheets/new_styles/_base.scss b/app/assets/stylesheets/new_styles/_base.scss
index c28c5399759ada4bbd87cf72df72b30e8bea6f92..636756419532bd0d28ddb9213361aaabd230b884 100644
--- a/app/assets/stylesheets/new_styles/_base.scss
+++ b/app/assets/stylesheets/new_styles/_base.scss
@@ -194,7 +194,7 @@ article { //mood posts
     text-align: left;
 
     .container {
-      width: 600px;
+      max-width: 600px;
     }
 
     .photo_viewer {
diff --git a/config/routes.rb b/config/routes.rb
index a50712307917876808a582a7b55c5c29f84313f5..d556997cbb651277b373cb10a78e870a50e0bc25 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -19,7 +19,7 @@ Diaspora::Application.routes.draw do
   match "/framer" => redirect("/posts/new")
 
   get 'p/:id' => 'posts#show', :as => 'short_post'
-  get 'p/:id/iframe' => 'posts#iframe', :as => 'iframe'
+  get 'posts/:id/iframe' => 'posts#iframe', :as => 'iframe'
 
   # roll up likes into a nested resource above
   resources :comments, :only => [:create, :destroy] do