<?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: How to change the font size of the image box</title>
		<atom:link href="http://blueowlcreative.com/support_wp/forums/topic/how-to-change-the-font-size-of-the-image-box/feed/" rel="self" type="application/rss+xml" />
		<link>http://blueowlcreative.com/support_wp/forums/topic/how-to-change-the-font-size-of-the-image-box/feed/</link>
		<description></description>
		<pubDate>Fri, 01 May 2026 00:27:51 +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/how-to-change-the-font-size-of-the-image-box/#post-22979</guid>
					<title><![CDATA[How to change the font size of the image box]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/how-to-change-the-font-size-of-the-image-box/#post-22979</link>
					<pubDate>Wed, 30 Sep 2015 21:16:23 +0000</pubDate>
					<dc:creator>sellonline0298</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>I havent been able to change the font -size of the titles of specific image boxes which are h3, I know it has to be done by adding a name in the extra class name and then refering to it in the css, but I haven&#8217;t figured it out. (I dont what to change the font size of all the h3 images boxes I just need to change some titles of some specific image boxes)</p>
<p>Do you know how can I do that?</p>
<p>Thanks in advance,</p>
<p>David</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/how-to-change-the-font-size-of-the-image-box/#post-22985</guid>
					<title><![CDATA[Reply To: How to change the font size of the image box]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/how-to-change-the-font-size-of-the-image-box/#post-22985</link>
					<pubDate>Thu, 01 Oct 2015 08:47:51 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi David,</p>
<p>Simply add a css class to your element, for example &#8220;my_custom_heading&#8221;.<br />
Then you have several options to define the CSS for this class. </p>
<p>1. Define it globally in your Child theme style.css file &#8211; <a href="http://blueowlcreative.com/docs/fortuna/#customization1" rel="nofollow">http://blueowlcreative.com/docs/fortuna/#customization1</a></p>
<p>2. Define it globally in Theme Options &#8211; <a href="http://blueowlcreative.com/docs/fortuna/#customization2" rel="nofollow">http://blueowlcreative.com/docs/fortuna/#customization2</a></p>
<p>3. Define it locally (only for the current page) under the Custom CSS Settings &#8211; </p>
<p><a href="http://blueowlcreative.com/docs/fortuna/#customization3" rel="nofollow">http://blueowlcreative.com/docs/fortuna/#customization3</a><br />
 <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/how-to-change-the-font-size-of-the-image-box/#post-23008</guid>
					<title><![CDATA[Reply To: How to change the font size of the image box]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/how-to-change-the-font-size-of-the-image-box/#post-23008</link>
					<pubDate>Thu, 01 Oct 2015 19:06:28 +0000</pubDate>
					<dc:creator>sellonline0298</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Tahnks for yoyr response,</p>
<p>I tried it with the optino number 2 you sent me (Custom css)</p>
<p>But I haven&#8217;t been able to make it work</p>
<p>I added this element to the image box class<br />
my_custom_heading</p>
<p>And them I defined by pasting this code in the custom css</p>
<p>.my_custom_heading  h3 {<br />
	margin: 6px 30px 0 30px;<br />
	font-size: 13px;<br />
	line-height: 16px;<br />
	color: #333;<br />
	padding: 6px 0 0 0;<br />
}</p>
<p>Thanks a lot,</p>
<p>David</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/how-to-change-the-font-size-of-the-image-box/#post-23015</guid>
					<title><![CDATA[Reply To: How to change the font size of the image box]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/how-to-change-the-font-size-of-the-image-box/#post-23015</link>
					<pubDate>Thu, 01 Oct 2015 20:06:02 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi David, </p>
<p>You did good, this is the way to actually make things work, the only tricky part here is (you can see this if you open Developer tools) the heading for the image boxes is defined in the main css file like this:</p>
<pre><code>.boc_image_box .info_overlay h3 {
......
}</code></pre>
<p>And this by default (following CSS logic) has higher precedence than for example:</p>
<pre><code>.my_custom_heading h3 {
......
}</code></pre>
<p>No problem, we will simply narrow down our selector so it overwrites the default one in the CSS file.</p>
<p>Try with this:</p>
<pre><code>.my_custom_heading.boc_image_box .info_overlay h3 {
......
}</code></pre>
<p>Another way would be to simply pass your value as important:</p>
<pre><code>.my_custom_heading h3 {
font-size: 13px !important;
}</code></pre>
<p> <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

