Title: Container problem
Last modified: August 22, 2016

---

# Container problem

 *  Resolved [klpz1380am](https://wordpress.org/support/users/klpz1380am/)
 * (@klpz1380am)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/container-problem-1/)
 * Hi, great plugin. But the update breaks the container on the sidebar widget at
   [http://parkerliveonline.com](http://parkerliveonline.com) – can you think of
   an easy fix for this? I’ve left it that way for now, so you can see the issue
   easily.
 * [https://wordpress.org/plugins/wunderground/](https://wordpress.org/plugins/wunderground/)

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

 *  [straitline](https://wordpress.org/support/users/straitline/)
 * (@straitline)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/container-problem-1/#post-5392267)
 * Hi, I had the same problem and used this css to fix it:
 *     ```
       .wu-forecast-wrapper, .wu-wrapper{
       	float:none !important;
       }
       ```
   
 *  Thread Starter [klpz1380am](https://wordpress.org/support/users/klpz1380am/)
 * (@klpz1380am)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/container-problem-1/#post-5392269)
 * Hey there – thanks! – whereabouts did you drop that CSS?
 *  [straitline](https://wordpress.org/support/users/straitline/)
 * (@straitline)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/container-problem-1/#post-5392285)
 * I always include a custom style sheet with my themes for customization, but it
   looks like your theme has an additional style section built into the admin that
   places the code into the page head.
 *     ```
       <style type="text/css" media="screen">
       ::-webkit-scrollbar {width: 8px; height:8px; }
       	#main-nav,.cat-box-content,#sidebar .widget-container,.post-listing {border-bottom-color: #ef3636;}
       	.search-block .search-button,
       	#topcontrol,
       	#main-nav ul li.current-menu-item a,
       	#main-nav ul li.current-menu-item a:hover,
       	#main-nav ul li.current-menu-parent a,
       	#main-nav ul li.current-menu-parent a:hover,
       	#main-nav ul li.current-page-ancestor a,
       	#main-nav ul li.current-page-ancestor a:hover,
       	.pagination span.current,
       	.share-post span.share-text,
       	.flex-control-paging li a.flex-active,
       	.ei-slider-thumbs li.ei-slider-element,
       	.review-percentage .review-item span span,.review-final-score ,
       	.woocommerce span.onsale, .woocommerce-page span.onsale ,
       	.woocommerce .widget_price_filter .ui-slider .ui-slider-handle, .woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle  {
       		background-color:#ef3636 !important;
       	}
       	::-webkit-scrollbar-thumb{background-color:#ef3636 !important;}
       	footer#theme-footer, .top-nav, .top-nav ul li.current-menu-item:after,#main-nav ul li.mega-menu .mega-menu-block, #main-nav ul ul {border-top-color: #ef3636;}
       	.search-block:after {border-right-color:#ef3636;}
       	#main-nav ul > li.parent-list:hover > a:after{border-color:transparent transparent #ef3636;}
   
       body {
        background-image : url(http://www.parkerliveonline.com/wp-content/themes/sahifa/images/patterns/body-bg7.png);background-position: top center;
       }
   
       body.single .entry, body.page .entry{
       	font-size : 15px;
       }
       a {
       	color: #000000;	}
       a:hover {
       	color: #ff0a1e;	text-decoration: underline;}
       body.single .post .entry a, body.page .post .entry a {
       	color: #ff0a1e;	}
       body.single .post .entry a:hover, body.page .post .entry a:hover {
       		text-decoration: underline;}
   
       </style>
       ```
   
 *  Thread Starter [klpz1380am](https://wordpress.org/support/users/klpz1380am/)
 * (@klpz1380am)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/container-problem-1/#post-5392288)
 * Never mind – I added it in the wunderground.css file and it worked great. Thanks
   again.
 *  [straitline](https://wordpress.org/support/users/straitline/)
 * (@straitline)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/container-problem-1/#post-5392294)
 * You probably don’t want to do that, your change will be overwritten the next 
   time the plugin is updated. Although hopefully they will fix the problem, it 
   is good practice to not directly modify any core or plugin code.
 *  [lilyhoop](https://wordpress.org/support/users/lilyhoop/)
 * (@lilyhoop)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/container-problem-1/#post-5392460)
 * I’m also having this problem at [http://www.glensfallschronicle.com](http://www.glensfallschronicle.com)
   with the widget breaking out of the sidebar container – any suggestions for how
   to fix? I tried inserting that code but it didn’t do the trick…
 * Thanks!
 *  [straitline](https://wordpress.org/support/users/straitline/)
 * (@straitline)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/container-problem-1/#post-5392466)
 * Hi Lilyhoop,
    It looks like you’ve got the code in the right place, you just 
   need to wrap it in <style> tags like so:
 *     ```
       <style type="text/css" media="screen">
       .wu-forecast-wrapper, .wu-wrapper{
       	float:none !important;
       }
       </style>
       ```
   
 *  [lilyhoop](https://wordpress.org/support/users/lilyhoop/)
 * (@lilyhoop)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/container-problem-1/#post-5392481)
 * Thank you so much! That fixed it, but the “Weather Underground” logo seems to
   be popping out of the bottom of the container. How do I correct this?
 *  [lilyhoop](https://wordpress.org/support/users/lilyhoop/)
 * (@lilyhoop)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/container-problem-1/#post-5392482)
 * And I realize the next question is about somebody else’s plugin, but I wondered
   if you could offer some guidance about the container right below it, with the
   same issue happening to the YouTube video?
 *  [straitline](https://wordpress.org/support/users/straitline/)
 * (@straitline)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/container-problem-1/#post-5392484)
 * Same problem for your You Tube video and the Weather underground logo. There’s
   probably a more logical answer for these, but here’s a quick and dirty solution.
 *     ```
       .wu-copyright,
       .youtube_channel {
       float:none;
       }
       ```
   
 *  [lilyhoop](https://wordpress.org/support/users/lilyhoop/)
 * (@lilyhoop)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/container-problem-1/#post-5392487)
 * Thank you, thank you, THANK you!!!
 *  Thread Starter [klpz1380am](https://wordpress.org/support/users/klpz1380am/)
 * (@klpz1380am)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/container-problem-1/#post-5392488)
 * Oops – yes – thank you! Into the custom styles section it goes.
 *  [jenzgaard](https://wordpress.org/support/users/jenzgaard/)
 * (@jenzgaard)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/container-problem-1/#post-5392573)
 * Thanks straitline!

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

The topic ‘Container problem’ is closed to new replies.

 * ![](https://ps.w.org/wunderground/assets/icon-256x256.jpg?rev=1000977)
 * [Weather Underground](https://wordpress.org/plugins/wunderground/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wunderground/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wunderground/)
 * [Active Topics](https://wordpress.org/support/plugin/wunderground/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wunderground/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wunderground/reviews/)

 * 13 replies
 * 4 participants
 * Last reply from: [jenzgaard](https://wordpress.org/support/users/jenzgaard/)
 * Last activity: [10 years, 8 months ago](https://wordpress.org/support/topic/container-problem-1/#post-5392573)
 * Status: resolved