<?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: h tags appearing differently if appearing within a column - Propulsion Theme</title>
		<link>http://www.kriesi.at/support/topic/h-tags-appearing-differently-if-appearing-within-a-column-propulsion-theme</link>
		<description>Support Forum - Topic: h tags appearing differently if appearing within a column - Propulsion Theme</description>
		<language>en-US</language>
		<pubDate>Fri, 24 May 2013 15:05:29 +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/h-tags-appearing-differently-if-appearing-within-a-column-propulsion-theme" rel="self" type="application/rss+xml" />

		<item>
			<title>Ismael on "h tags appearing differently if appearing within a column - Propulsion Theme"</title>
			<link>http://www.kriesi.at/support/topic/h-tags-appearing-differently-if-appearing-within-a-column-propulsion-theme#post-77346</link>
			<pubDate>Wed, 26 Sep 2012 01:36:52 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">77346@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Amanda,&#60;/p&#62;
&#60;p&#62;Glad that we could help. :)&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>designjunkies on "h tags appearing differently if appearing within a column - Propulsion Theme"</title>
			<link>http://www.kriesi.at/support/topic/h-tags-appearing-differently-if-appearing-within-a-column-propulsion-theme#post-77335</link>
			<pubDate>Tue, 25 Sep 2012 22:39:33 +0000</pubDate>
			<dc:creator>designjunkies</dc:creator>
			<guid isPermaLink="false">77335@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Awesome! Thanks guys! :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "h tags appearing differently if appearing within a column - Propulsion Theme"</title>
			<link>http://www.kriesi.at/support/topic/h-tags-appearing-differently-if-appearing-within-a-column-propulsion-theme#post-77233</link>
			<pubDate>Tue, 25 Sep 2012 09:03:21 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">77233@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi designjunkies,&#60;/p&#62;
&#60;p&#62;You can write the code this way:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.flex_column .h2_style,
h2_style {
   color: #151515;
   font-family: &#38;#39;Open Sans&#38;#39;, arial, serif;
   font-size: 33px;
   font-weight: normal;
   line-height: 1.1em;
   margin-bottom: 10px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This way you can use h2_style even though it's outside the column. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>designjunkies on "h tags appearing differently if appearing within a column - Propulsion Theme"</title>
			<link>http://www.kriesi.at/support/topic/h-tags-appearing-differently-if-appearing-within-a-column-propulsion-theme#post-77216</link>
			<pubDate>Tue, 25 Sep 2012 07:14:43 +0000</pubDate>
			<dc:creator>designjunkies</dc:creator>
			<guid isPermaLink="false">77216@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Awesome, I thought I was going a bit nuts! ;)&#60;/p&#62;
&#60;p&#62;What about if I wanted to use your column styled H2 (etc) tags - is there a class you are using that I add to my non-columed code to reference the column h tags?&#60;/p&#62;
&#60;p&#62;Thanks heaps!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "h tags appearing differently if appearing within a column - Propulsion Theme"</title>
			<link>http://www.kriesi.at/support/topic/h-tags-appearing-differently-if-appearing-within-a-column-propulsion-theme#post-77062</link>
			<pubDate>Mon, 24 Sep 2012 07:46:01 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">77062@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Amanda,&#60;/p&#62;
&#60;p&#62;Yes, the Heading(H) Tag styles differ when they are inside a column shortcode. I think the easiest way to resolve this is to put some class inside your H tag and add its style in either Quick CSS or custom.css. For example, inside a column shortcode, instead of writing:&#60;br /&#62;
&#60;code&#62;&#38;lt;h2&#38;gt;DROPCAP 1 IN H2 TAG&#38;lt;/h2&#38;gt;&#60;/code&#62;&#60;br /&#62;
add a class inside your h2 tag:&#60;br /&#62;
&#60;code&#62;&#38;lt;h2 class=&#38;quot;h2_style&#38;quot;&#38;gt;DROPCAP 1 IN H2 TAG&#38;lt;/h2&#38;gt;&#60;/code&#62;&#60;br /&#62;
and add this to Quick CSS or custom.css:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.flex_column .h2_style {
   color: #151515;
   font-family: &#38;#39;Open Sans&#38;#39;, arial, serif;
   font-size: 33px;
   font-weight: normal;
   line-height: 1.1em;
   margin-bottom: 10px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;if you want to style other H tags, just add a class inside your H tag and when styling use this pattern:&#60;br /&#62;
&#60;code&#62;.flex_column .class&#60;/code&#62;&#60;br /&#62;
Just like the one we have done above. Hope this is helpful. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>designjunkies on "h tags appearing differently if appearing within a column - Propulsion Theme"</title>
			<link>http://www.kriesi.at/support/topic/h-tags-appearing-differently-if-appearing-within-a-column-propulsion-theme#post-77043</link>
			<pubDate>Mon, 24 Sep 2012 04:36:52 +0000</pubDate>
			<dc:creator>designjunkies</dc:creator>
			<guid isPermaLink="false">77043@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi guys,&#60;/p&#62;
&#60;p&#62;I am finding that my H1-H6 tag appear differently on a page depending if they are sitting within a 'shortcode' created column or not..?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://easyretailsolutions.com/?page_id=210&#34; rel=&#34;nofollow&#34;&#62;http://easyretailsolutions.com/?page_id=210&#60;/a&#62;&#60;br /&#62;
The 2x headings on this page (linked above) have the same &#38;lt;h2&#38;gt; tag but appear differently&#60;br /&#62;
Dropcap heading font h2 tag&#60;br /&#62;
DROPCAP 1 IN H2 TAG&#60;/p&#62;
&#60;p&#62;Is there any way to control this? They probably need to be one or the other.&#60;/p&#62;
&#60;p&#62;Thank you!&#60;br /&#62;
Amanda
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
