<?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: Custom CSS Mobile Responsiveness</title>
		<atom:link href="http://blueowlcreative.com/support_wp/forums/topic/custom-css-mobile-responsiveness/feed/" rel="self" type="application/rss+xml" />
		<link>http://blueowlcreative.com/support_wp/forums/topic/custom-css-mobile-responsiveness/feed/</link>
		<description></description>
		<pubDate>Sat, 18 Jul 2026 17:41:43 +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/custom-css-mobile-responsiveness/#post-32522</guid>
					<title><![CDATA[Custom CSS Mobile Responsiveness]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/custom-css-mobile-responsiveness/#post-32522</link>
					<pubDate>Wed, 07 Feb 2018 22:51:25 +0000</pubDate>
					<dc:creator>anoriega</dc:creator>

					<description>
						<![CDATA[
						<p>I added custom CSS to my site&#8217;s blog posts. Primarily changing the margin for the post description, so it was centered. I also changed the width and height of the featured images for blog posts.</p>
<p>The only issue is that for mobile, the pages are looking a bit strange. The blog images are cut off and when it comes to the paragraphs, after each word there is a break, making the page extremely long. A good page would be to compare this blog post of ours on desktop vs. mobile: <a href="http://aquilasw.com/2018/01/10/promoting-careful-not-kill-top-performers/" rel="nofollow">http://aquilasw.com/2018/01/10/promoting-careful-not-kill-top-performers/</a></p>
<p>Can you help me keep my custom CSS in place while making the pages mobile responsive? </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/custom-css-mobile-responsiveness/#post-32525</guid>
					<title><![CDATA[Reply To: Custom CSS Mobile Responsiveness]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/custom-css-mobile-responsiveness/#post-32525</link>
					<pubDate>Thu, 08 Feb 2018 08:04:52 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Sure, I would be happy to help. Why are you setting fixed width/height to your image container (<code>.single .pic</code>)?<br />
I would instead set max-width only and do it in a media query only for bix screens! Like so for example:</p>
<pre><code>@media only screen and (min-width: 1018px) {
  .single .pic {
    max-width: 600px;
  }
}</code></pre>
<p>Same for the <code>.post_description</code>, put that in the same media query so it takes place only for big screens.</p>
<pre><code>@media only screen and (min-width: 1018px) {
  .single .pic {
    max-width: 600px;
  }
  .post_description {
    margin: 50px 150px;
    width: auto;
  }
}</code></pre>
<p><code>&quot;after each word there is a break&quot;</code> ? What do you mean here? <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/custom-css-mobile-responsiveness/#post-32531</guid>
					<title><![CDATA[Reply To: Custom CSS Mobile Responsiveness]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/custom-css-mobile-responsiveness/#post-32531</link>
					<pubDate>Thu, 08 Feb 2018 14:31:51 +0000</pubDate>
					<dc:creator>anoriega</dc:creator>

					<description>
						<![CDATA[
						<p>Ok, great thank you! The picture is responsive and looks good. The only thing is the actual paragraphs look weird on mobile. For example, it&#8217;s showing up like this on a mobile screen: </p>
<p>One<br />
of<br />
the<br />
biggest<br />
mistakes<br />
I<br />
have<br />
seen</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/custom-css-mobile-responsiveness/#post-32532</guid>
					<title><![CDATA[Reply To: Custom CSS Mobile Responsiveness]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/custom-css-mobile-responsiveness/#post-32532</link>
					<pubDate>Fri, 09 Feb 2018 11:27:05 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Yes, that&#8217;s cuz of the post_description CSS you added, remove it and add it as I showed (only for big screens). <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/custom-css-mobile-responsiveness/#post-32563</guid>
					<title><![CDATA[Reply To: Custom CSS Mobile Responsiveness]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/custom-css-mobile-responsiveness/#post-32563</link>
					<pubDate>Wed, 14 Feb 2018 22:08:05 +0000</pubDate>
					<dc:creator>anoriega</dc:creator>

					<description>
						<![CDATA[
						<p>Thank you for your help! Makes complete sense and worked! <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

