<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>
		<title>BlueOwlCreative  &#187;  Topic: Woocommerce product widget acting weird</title>
		<atom:link href="http://blueowlcreative.com/support_wp/forums/topic/woocommerce-product-widget-acting-weird/feed/" rel="self" type="application/rss+xml" />
		<link>http://blueowlcreative.com/support_wp/forums/topic/woocommerce-product-widget-acting-weird/feed/</link>
		<description></description>
		<pubDate>Sat, 18 Jul 2026 03:43:25 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.5.3-5249</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/woocommerce-product-widget-acting-weird/#post-24879</guid>
					<title><![CDATA[Woocommerce product widget acting weird]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/woocommerce-product-widget-acting-weird/#post-24879</link>
					<pubDate>Thu, 19 Nov 2015 03:03:18 +0000</pubDate>
					<dc:creator>lmzan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi<br />
In my Fortuna theme I installed Woocommerce and in the footer I&#8217;m showing Fortuna Latest Posts widget in one column and Woocommerce Products widget in another column.<br />
In most of the images they behave as expected, showing small thumbnails and texts.<br />
But when I&#8217;m in the blog area, viewing a post for example, the products thumbnails get bigger and ruin the layout.<br />
Debugging and comparing the CSS in both generated pages, in the problem page (blog) there&#8217;s a missing section of the Woocommerce CSS. Everything is the same, until we get to the &lt;ul class=&#8221;product_list_widget&#8221;&gt;, the list that holds the images and texts from product to be shown. From this point, in the blog page, there&#8217;s a missing segment of CSS:</p>
<pre><code>.woocommerce ul.cart_list, .woocommerce ul.product_list_widget {
    list-style: outside none none;
    padding: 0px;
    margin: 0px;
}</code></pre>
<p>Then in the
<li> markup it&#8217;s missing this:</p>
<pre><code>.woocommerce ul.cart_list li, .woocommerce ul.product_list_widget li {
	padding: 4px 0px;
	margin: 0px;
	list-style: outside none none;
}</code></pre>
<p>In the <a> markup it&#8217;s missing this:</p>
<pre><code>.woocommerce ul.cart_list li a, .woocommerce ul.product_list_widget li a {
	display: block;
	font-weight: 700;
}</code></pre>
<p>This CSS rules above are from <code>http://../site/wp-content/plugins/woocommerce/assets /css/woocommerce.css?ver=2.4.10 :1</code></p>
<p>Finally, in the <img /> markup, that holds the bigger thumbnail, it&#8217;s missing this:</p>
<pre><code>.woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img, .woocommerce-page ul.cart_list li img, .woocommerce-page ul.product_list_widget li img {
	float: left !important;
	width: 56px !important;
	background: #FFF none repeat scroll 0% 0%;
	border: 1px solid rgba(0, 0, 0, 0.06);
	padding: 2px;
	box-shadow: none !important;
	margin-left: 0px !important;
	margin-right: 14px !important;
	border-radius: 1px !important;
	transition: all 0.2s linear 0s;
}</code></pre>
<p>This is from <code>http://divan.com.br/site/wp-content/themes/fortuna/stylesheets/woocommerce.css?ver=4.3.1 :912</code></p>
<p>Sorry if I&#8217;m not clear enough, but is there something I could do to try to find the cause of this error?</p>
<p>Thanks</a></li>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/woocommerce-product-widget-acting-weird/#post-24901</guid>
					<title><![CDATA[Reply To: Woocommerce product widget acting weird]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/woocommerce-product-widget-acting-weird/#post-24901</link>
					<pubDate>Thu, 19 Nov 2015 16:44:09 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>The reason is simple, you are no longer on a woocommerce template when being on the blog page. Basically the custom woocommerce CSS is made to work only on Woocommerce pages! You can try adding this to your CSS:</p>
<pre><code>#footer ul.cart_list li img, #footer ul.product_list_widget li img, #footer ul.cart_list li img, #footer ul.product_list_widget li img {
	float: left !important;
	width: 56px !important;
	background: #FFF none repeat scroll 0% 0%;
	border: 1px solid rgba(0, 0, 0, 0.06);
	padding: 2px;
	box-shadow: none !important;
	margin-left: 0px !important;
	margin-right: 14px !important;
	border-radius: 1px !important;
	transition: all 0.2s linear 0s;
}</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/woocommerce-product-widget-acting-weird/#post-24916</guid>
					<title><![CDATA[Reply To: Woocommerce product widget acting weird]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/woocommerce-product-widget-acting-weird/#post-24916</link>
					<pubDate>Thu, 19 Nov 2015 18:04:20 +0000</pubDate>
					<dc:creator>lmzan</dc:creator>

					<description>
						<![CDATA[
						<p>Wow!!<br />
Are you guys always that awesome?<br />
Even with my messy request, full of wrong HTML codes in the text you got right on the spot.<br />
It&#8217;s working fine now, thanks a lot!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/woocommerce-product-widget-acting-weird/#post-24930</guid>
					<title><![CDATA[Reply To: Woocommerce product widget acting weird]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/woocommerce-product-widget-acting-weird/#post-24930</link>
					<pubDate>Fri, 20 Nov 2015 13:13:38 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Anytime, bud, glad I could help.<br />
Make sure you rate our theme if you are happy with it and want to support us back! <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

