Title: Box doesn&#039;t show full width
Last modified: August 21, 2016

---

# Box doesn't show full width

 *  Resolved [tjvanapeldoorn1](https://wordpress.org/support/users/tjvanapeldoorn1/)
 * (@tjvanapeldoorn1)
 * [12 years ago](https://wordpress.org/support/topic/box-doesnt-show-full-width/)
 * I have a page featured on my homepage in a widget, but it seems to align right
   completely which leaves some empty room on the left of my website? How can I 
   force the box of align over the full width of the page?
 * Please see [http://www.zumba-arnhem.nl](http://www.zumba-arnhem.nl) and scroll
   down to till you see a pink header called DSV Dance Gala to see what I mean.
 * [https://wordpress.org/plugins/feature-a-page-widget/](https://wordpress.org/plugins/feature-a-page-widget/)

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Plugin Author [mrwweb](https://wordpress.org/support/users/mrwweb/)
 * (@mrwweb)
 * [12 years ago](https://wordpress.org/support/topic/box-doesnt-show-full-width/#post-4977579)
 * It looks like this problem is coming from your theme and not the plugin.
 * The plugin’s HTML output includes the results of the `post_class()` function 
   which provides useful classes related to the post type, post status, and more.
   Your theme adds a “type-page” class and styles it with `width:90%;` in a _theme-
   specific_ stylesheet.
 * You’ll want to override this with a different style.
 *     ```
       .widget_fpw_widget .type-page {
           width: auto;
       }
       ```
   
 * That should probably do the trick.
 *  Thread Starter [tjvanapeldoorn1](https://wordpress.org/support/users/tjvanapeldoorn1/)
 * (@tjvanapeldoorn1)
 * [12 years ago](https://wordpress.org/support/topic/box-doesnt-show-full-width/#post-4977583)
 * That did the trick, perfect!! Thanks 🙂
 *  Thread Starter [tjvanapeldoorn1](https://wordpress.org/support/users/tjvanapeldoorn1/)
 * (@tjvanapeldoorn1)
 * [12 years ago](https://wordpress.org/support/topic/box-doesnt-show-full-width/#post-4977588)
 * Hi, still have one question: how do I set the border to 0px? I don’t want to 
   see the border that is showing now.
 *  Plugin Author [mrwweb](https://wordpress.org/support/users/mrwweb/)
 * (@mrwweb)
 * [12 years ago](https://wordpress.org/support/topic/box-doesnt-show-full-width/#post-4977607)
 * Just to be extra clear, this is an issue with the theme and not the plugin.
 * The “border” is actually a drop-shadow, so add this to the CSS rule I posted 
   above:
 *     ```
       -webkit-box-shadow: none;
       box-shadow: none;
       ```
   

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Box doesn't show full width’ is closed to new replies.

 * ![](https://ps.w.org/feature-a-page-widget/assets/icon.svg?rev=974121)
 * [Feature A Page Widget](https://wordpress.org/plugins/feature-a-page-widget/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/feature-a-page-widget/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/feature-a-page-widget/)
 * [Active Topics](https://wordpress.org/support/plugin/feature-a-page-widget/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/feature-a-page-widget/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/feature-a-page-widget/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [mrwweb](https://wordpress.org/support/users/mrwweb/)
 * Last activity: [12 years ago](https://wordpress.org/support/topic/box-doesnt-show-full-width/#post-4977607)
 * Status: resolved