<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Support Forum - Topic: replete styling of the product price at product level</title>
		<link>http://www.kriesi.at/support/topic/replete-styling-of-the-product-price-at-product-level</link>
		<description>Support Forum - Topic: replete styling of the product price at product level</description>
		<language>en-US</language>
		<pubDate>Fri, 24 May 2013 00:55:58 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/replete-styling-of-the-product-price-at-product-level" rel="self" type="application/rss+xml" />

		<item>
			<title>Ismael on "replete styling of the product price at product level"</title>
			<link>http://www.kriesi.at/support/topic/replete-styling-of-the-product-price-at-product-level#post-91413</link>
			<pubDate>Mon, 14 Jan 2013 01:24:51 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">91413@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Try to add this then&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.archive #top .price, .archive  #top .price span, .archive #top del, #top  ins{
display:inline;
font-size: 10px !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Change the font-size value.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gsTom on "replete styling of the product price at product level"</title>
			<link>http://www.kriesi.at/support/topic/replete-styling-of-the-product-price-at-product-level#post-91348</link>
			<pubDate>Sun, 13 Jan 2013 10:29:18 +0000</pubDate>
			<dc:creator>gsTom</dc:creator>
			<guid isPermaLink="false">91348@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Ismael,&#60;/p&#62;
&#60;p&#62;the font-size change is working well in custom.css also without !important declaration.&#60;br /&#62;
Unfortunatley it also changes the font size in the archive page (where all products are listed) :(&#60;/p&#62;
&#60;p&#62;The alignment of the price tag to the right I could still not accomplish&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Tom
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "replete styling of the product price at product level"</title>
			<link>http://www.kriesi.at/support/topic/replete-styling-of-the-product-price-at-product-level#post-91331</link>
			<pubDate>Sun, 13 Jan 2013 09:06:43 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">91331@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi gsTom,&#60;/p&#62;
&#60;p&#62;To prevent other styles from overwriting the style you made in custom.css or Quick CSS, try using the !important. For, example in your code above font-size doesn't change, try to change your code to this:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top .price, #top .price span, #top del, #top  ins{
display:inline;
text-decoration: none;
font-size: 12px !important;
line-height: 18px;
font-weight: bold;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;For the margin-bottom not working, try to change your display value from inline to inline-block. Hope this helps.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gsTom on "replete styling of the product price at product level"</title>
			<link>http://www.kriesi.at/support/topic/replete-styling-of-the-product-price-at-product-level#post-91282</link>
			<pubDate>Sat, 12 Jan 2013 18:24:50 +0000</pubDate>
			<dc:creator>gsTom</dc:creator>
			<guid isPermaLink="false">91282@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi, again me,&#60;/p&#62;
&#60;p&#62;sorry, but it is really hard for a beginner :-&#124;&#60;/p&#62;
&#60;p&#62;On the product page the price is just below the product title (it's a product with variants all the same price) left aligned and very small in size. Following suggestions from another post here, I figured out with firebug, that there is following structure&#60;/p&#62;
&#60;p&#62;the price is inside of an span with the class .amount&#60;br /&#62;
wrapped arround is a paragraph with the class .price&#60;br /&#62;
this both are wrapped by a div without id or class, which seems to me is just for microdata purposes (i.e. google rich snippet?)&#60;/p&#62;
&#60;p&#62;however, I want to make the price bigger cause I don't need to hide it :) the css I found in woocommerce-mod.css line 405, so I made a copy of it to put it into my custom.css, it carries this css where I can change the price font-size:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#top .price, #top .price span, #top del, #top  ins{
display:inline;
text-decoration: none;
font-size: 12px;
line-height: 18px;
font-weight: bold;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But for the allignment of the price to the right I need to touch the paragraph (p) since I can not allign inline elements. Inspecting it further, I believe to found the p elment in the backend custom style modifications area directly in the pages source code, which comes after the custom.css, so overwriting it.&#60;br /&#62;
So this does not change anything:&#60;br /&#62;
 &#60;code&#62;p.price { text-align: right; }&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Also a margin-bottom is ignored. Where can I get this done?&#60;/p&#62;
&#60;p&#62;Thanks for hints&#60;br /&#62;
Tom&#60;/p&#62;
&#60;p&#62;PS: nearby, hint for the next version:)&#60;br /&#62;
* the add to cart button is missing its lower border (caused by 1px too much vertical padding)&#60;br /&#62;
* with woo shareThis enabled, the sku, category and reset selection line is sticking to close to the shareThis buttons (product_meta missing border-bottom)
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
