<?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>h2 to h1 3d &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/h2-to-h1-3d/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/h2-to-h1-3d/feed/</link>
		<description></description>
		<lastBuildDate>Fri, 21 Nov 2025 02:02:14 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/h2-to-h1-3d/#post-278906</guid>
					<title><![CDATA[h2 to h1 3d]]></title>
					<link>https://theme.co/archive/forums/topic/h2-to-h1-3d/#post-278906</link>
					<pubDate>Thu, 21 May 2015 20:09:35 +0000</pubDate>
					<dc:creator>zoranaron</dc:creator>

					<description>
						<![CDATA[
						<p>I am using this code to create the effect I want but found that the size was too big on mobile and I also would prefer that it be h1 for header reasons.  When I changed it from h2 to h1 I lost the 3d effect.  Why and how would I fix this?  I will probably add font-size also</p>
<p>Thanks</p>
<p>h2 {<br />
 font-size:40px;<br />
  text-shadow: 0 1px 0 #ccc,<br />
               0 2px 0 #c9c9c9,<br />
               0 3px 0 #bbb,<br />
               0 4px 0 #b9b9b9,<br />
               0 5px 0 #aaa,<br />
               0 6px 1px rgba(0,0,0,.1),<br />
               0 0 5px rgba(0,0,0,.1),<br />
               0 1px 3px rgba(0,0,0,.3),<br />
               0 3px 5px rgba(0,0,0,.2),<br />
               0 5px 10px rgba(0,0,0,.25),<br />
               0 10px 10px rgba(0,0,0,.2),<br />
               0 20px 20px rgba(0,0,0,.15) ;<br />
}</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/h2-to-h1-3d/#post-278907</guid>
					<title><![CDATA[Reply To: h2 to h1 3d]]></title>
					<link>https://theme.co/archive/forums/topic/h2-to-h1-3d/#post-278907</link>
					<pubDate>Thu, 21 May 2015 20:10:04 +0000</pubDate>
					<dc:creator>zoranaron</dc:creator>

					<description>
						<![CDATA[
						This reply has been marked as private.						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/h2-to-h1-3d/#post-278963</guid>
					<title><![CDATA[Reply To: h2 to h1 3d]]></title>
					<link>https://theme.co/archive/forums/topic/h2-to-h1-3d/#post-278963</link>
					<pubDate>Thu, 21 May 2015 21:39:29 +0000</pubDate>
					<dc:creator>zoranaron</dc:creator>

					<description>
						<![CDATA[
						<p>One other question that kinda goes along these lines.  When I am editing text and I make something h1 or other header, it quite often changes the whole paragraph.  How do I stop this from happening?</p>
<p>Thanks,<br />
zora</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/h2-to-h1-3d/#post-279142</guid>
					<title><![CDATA[Reply To: h2 to h1 3d]]></title>
					<link>https://theme.co/archive/forums/topic/h2-to-h1-3d/#post-279142</link>
					<pubDate>Fri, 22 May 2015 03:04:13 +0000</pubDate>
					<dc:creator>Lely</dc:creator>

					<description>
						<![CDATA[
						<p>Hello Zora,</p>
<p>Based on the style declaration above it will only work for h2. And every time you use H2 tag it will be show the 3d effect. The best way to declare that is assign to CSS  class like below:</p>
<pre><code>.three-d-effect {
font-size:40px;
text-shadow: 0 1px 0 #ccc,
0 2px 0 #c9c9c9,
0 3px 0 #bbb,
0 4px 0 #b9b9b9,
0 5px 0 #aaa,
0 6px 1px rgba(0,0,0,.1),
0 0 5px rgba(0,0,0,.1),
0 1px 3px rgba(0,0,0,.3),
0 3px 5px rgba(0,0,0,.2),
0 5px 10px rgba(0,0,0,.25),
0 10px 10px rgba(0,0,0,.2),
0 20px 20px rgba(0,0,0,.15) ;
}</code></pre>
<p>Then to use that class assign it your header like below:</p>
<pre><code>&lt;h1 style=&quot;text-align: center;&quot;  class=&quot;three-d-effect&quot;&gt;MountainViewWeb&lt;br&gt;
Web Design for the Laurel Highlands&lt;/h1&gt;</code></pre>
<p>OR</p>
<pre><code>&lt;h2 style=&quot;text-align: center;&quot;  class=&quot;three-d-effect&quot;&gt;MountainViewWeb&lt;br&gt;
Web Design for the Laurel Highlands&lt;/h2&gt;</code></pre>
<p>OR</p>
<pre><code>&lt;p style=&quot;text-align: center;&quot;  class=&quot;three-d-effect&quot;&gt;MountainViewWeb&lt;br&gt;
Web Design for the Laurel Highlands&lt;/p&gt;</code></pre>
<p>By assigning the style to class you can use different header tag like H1, H2, H3 or even on paragraph &lt;p&gt; tag.</p>
<p>About your last question, it is changing because every tag have different style like font size. H1 has the biggest font size it goes smaller on H2 or H3. So when the paragraph is rendered it will adjust, either be smaller or bigger depending on the tag. If this is not the issue, please give us more information on how the whole paragraph is changing and also give us the specific link where this happens.</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/h2-to-h1-3d/#post-279297</guid>
					<title><![CDATA[Reply To: h2 to h1 3d]]></title>
					<link>https://theme.co/archive/forums/topic/h2-to-h1-3d/#post-279297</link>
					<pubDate>Fri, 22 May 2015 08:08:03 +0000</pubDate>
					<dc:creator>zoranaron</dc:creator>

					<description>
						<![CDATA[
						This reply has been marked as private.						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/h2-to-h1-3d/#post-279367</guid>
					<title><![CDATA[Reply To: h2 to h1 3d]]></title>
					<link>https://theme.co/archive/forums/topic/h2-to-h1-3d/#post-279367</link>
					<pubDate>Fri, 22 May 2015 10:27:42 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>This is the default behaviour of WordPress editor. By pressing Shift+Enter it only adds a line break to the opened tag, i.e., heading or paragraph (see: <a href="http://prntscr.com/7817xa" rel="nofollow">http://prntscr.com/7817xa</a>). So, you should simply press enter instead to separate heading tag with paragraph.</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/h2-to-h1-3d/#post-279478</guid>
					<title><![CDATA[Reply To: h2 to h1 3d]]></title>
					<link>https://theme.co/archive/forums/topic/h2-to-h1-3d/#post-279478</link>
					<pubDate>Fri, 22 May 2015 13:19:51 +0000</pubDate>
					<dc:creator>zoranaron</dc:creator>

					<description>
						<![CDATA[
						<p>So then you have to code of single line return and header wrapped in text.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/h2-to-h1-3d/#post-279496</guid>
					<title><![CDATA[Reply To: h2 to h1 3d]]></title>
					<link>https://theme.co/archive/forums/topic/h2-to-h1-3d/#post-279496</link>
					<pubDate>Fri, 22 May 2015 13:46:13 +0000</pubDate>
					<dc:creator>zoranaron</dc:creator>

					<description>
						<![CDATA[
						This reply has been marked as private.						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/h2-to-h1-3d/#post-279672</guid>
					<title><![CDATA[Reply To: h2 to h1 3d]]></title>
					<link>https://theme.co/archive/forums/topic/h2-to-h1-3d/#post-279672</link>
					<pubDate>Fri, 22 May 2015 20:01:46 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Zoran,</p>
<p>Unfortunately, I didn&#8217;t understand your last response: &#8220;So then you have to code of single line return and header wrapped in text.&#8221; Would you mind providing us with some clarification on it?</p>
<p>Thanks. </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/h2-to-h1-3d/#post-280137</guid>
					<title><![CDATA[Reply To: h2 to h1 3d]]></title>
					<link>https://theme.co/archive/forums/topic/h2-to-h1-3d/#post-280137</link>
					<pubDate>Sat, 23 May 2015 11:26:06 +0000</pubDate>
					<dc:creator>zoranaron</dc:creator>

					<description>
						<![CDATA[
						This reply has been marked as private.						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

