<?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 break on mobile (boc_text_slider)</title>
		<atom:link href="https://blueowlcreative.com/support_wp/forums/topic/how-to-break-on-mobile-boc_text_slider/feed/" rel="self" type="application/rss+xml" />
		<link>https://blueowlcreative.com/support_wp/forums/topic/how-to-break-on-mobile-boc_text_slider/feed/</link>
		<description></description>
		<pubDate>Sat, 22 Aug 2026 08:10:44 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.5.3-5249</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/how-to-break-on-mobile-boc_text_slider/#post-31230</guid>
					<title><![CDATA[How to break on mobile (boc_text_slider)]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/how-to-break-on-mobile-boc_text_slider/#post-31230</link>
					<pubDate>Mon, 20 Mar 2017 18:46:56 +0000</pubDate>
					<dc:creator>AlexNavas</dc:creator>

					<description>
						<![CDATA[
						<p>I am using the boc_text_slider on my home page, but I noticed that the line isn&#8217;t breaking on mobile like the header above it is. Is there some way to cause a break on mobile like the other header?</p>
<p>The boc_text_slider text is on the header of <a href="http://amplifiedresults.com" rel="nofollow">http://amplifiedresults.com</a>.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/how-to-break-on-mobile-boc_text_slider/#post-31234</guid>
					<title><![CDATA[Reply To: How to break on mobile (boc_text_slider)]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/how-to-break-on-mobile-boc_text_slider/#post-31234</link>
					<pubDate>Tue, 21 Mar 2017 07:34:49 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Nope, the effect is meant for short wordings and technically it doesn&#8217;t allow for being broken apart. The solution would be to enforce a smaller font-size in mobile. I can see you are using the text_44_on_mobile class to make it 44px in size in mobile.<br />
You can experiment by modding the class to a smaller size, in your stylesheets/grid_responsive.css change:</p>
<p><code>font-size: 44px !important;</code></p>
<p>to say:</p>
<p><code>font-size: 20px !important;</code></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/how-to-break-on-mobile-boc_text_slider/#post-31238</guid>
					<title><![CDATA[Reply To: How to break on mobile (boc_text_slider)]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/how-to-break-on-mobile-boc_text_slider/#post-31238</link>
					<pubDate>Tue, 21 Mar 2017 21:58:32 +0000</pubDate>
					<dc:creator>AlexNavas</dc:creator>

					<description>
						<![CDATA[
						<p>is there a way to show the boc_text_slider on everything except on mobile and on mobile use text_rotate which does break on mobile?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/how-to-break-on-mobile-boc_text_slider/#post-31241</guid>
					<title><![CDATA[Reply To: How to break on mobile (boc_text_slider)]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/how-to-break-on-mobile-boc_text_slider/#post-31241</link>
					<pubDate>Wed, 22 Mar 2017 09:26:11 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>You could, all the code is in your common.js file.<br />
You can add a check around this for mobile </p>
<pre><code>// Text Slider
$(&quot;.boc_text_slider&quot;).each(function(){

	$(this).waypoint(function() {
		
		$(this).css({ opacity: 1 });
		$(this).boc_text_slider();
		
	}, { offset:&#039;90%&#039;,triggerOnce: true});
});</code></pre>
<p>like so:</p>
<pre><code>if(!boc_is_mobile){
// Text Slider
$(&quot;.boc_text_slider&quot;).each(function(){

	$(this).waypoint(function() {
		
		$(this).css({ opacity: 1 });
		$(this).boc_text_slider();
		
	}, { offset:&#039;90%&#039;,triggerOnce: true});
});
}</code></pre>
<p>This will disable it in mobile.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/how-to-break-on-mobile-boc_text_slider/#post-31243</guid>
					<title><![CDATA[Reply To: How to break on mobile (boc_text_slider)]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/how-to-break-on-mobile-boc_text_slider/#post-31243</link>
					<pubDate>Wed, 22 Mar 2017 16:12:27 +0000</pubDate>
					<dc:creator>AlexNavas</dc:creator>

					<description>
						<![CDATA[
						<p>Great. And what code would I use to show the text_rotate only instead of mobile? I only want the replacement to happen on the home page.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/how-to-break-on-mobile-boc_text_slider/#post-31246</guid>
					<title><![CDATA[Reply To: How to break on mobile (boc_text_slider)]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/how-to-break-on-mobile-boc_text_slider/#post-31246</link>
					<pubDate>Thu, 23 Mar 2017 07:58:45 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Try this instead:</p>
<pre><code>if(!boc_is_mobile){
// Text Slider
$(&quot;.boc_text_slider&quot;).each(function(){

	$(this).waypoint(function() {
		
		$(this).css({ opacity: 1 });
		$(this).boc_text_slider();
		
	}, { offset:&#039;90%&#039;,triggerOnce: true});
});
}else {
$(this).textrotator({
		animation: &quot;flipUp&quot;, // Options are dissolve (default), fade, flip, flipUp, flipCube, flipCubeUp and spin.
		separator: &quot;;&quot;,
		speed: 3000 // How many milliseconds until the next word show.
	});
}</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/how-to-break-on-mobile-boc_text_slider/#post-31264</guid>
					<title><![CDATA[Reply To: How to break on mobile (boc_text_slider)]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/how-to-break-on-mobile-boc_text_slider/#post-31264</link>
					<pubDate>Mon, 27 Mar 2017 17:05:12 +0000</pubDate>
					<dc:creator>AlexNavas</dc:creator>

					<description>
						<![CDATA[
						<p>I didn&#8217;t want to edit the code so I didn&#8217;t overwrite it when updating the theme. What I did instead was used css based on the screen size which gave me the effect I was looking for.</p>
<p>@media screen and (min-width:769px) {<br />
.homepage-header-mobile {<br />
    display: none!important;<br />
}<br />
}</p>
<p>@media screen and (max-width:768px) {<br />
.homepage-header-full {<br />
    display: none;<br />
}<br />
}</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

