<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blissful Interfaces &#187; responsive wordpress</title>
	<atom:link href="/tag/responsive-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://blissfulinterfaces.com</link>
	<description>web design development</description>
	<lastBuildDate>Wed, 30 May 2012 21:18:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Making WordPress video, image gallery / slideshows responsive</title>
		<link>http://blissfulinterfaces.com/responsive-wordpress-video-image-gallery-slideshows/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=responsive-wordpress-video-image-gallery-slideshows</link>
		<comments>http://blissfulinterfaces.com/responsive-wordpress-video-image-gallery-slideshows/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 23:31:35 +0000</pubDate>
		<dc:creator>Thanushka</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[responsive wordpress]]></category>
		<category><![CDATA[Web Design & Development]]></category>

		<guid isPermaLink="false">http://blissfulinterfaces.com/?p=805</guid>
		<description><![CDATA[<p><p><a href="/responsive-wordpress-video-image-gallery-slideshows/">Making WordPress video, image gallery / slideshows responsive</a></p><p>Here are some useful plugins to make your Wordpress videos responsive &#038; convert WP built in image galleries to responsive slideshows</p></p><p><a href="/">Blissful Interfaces - web design development</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="/responsive-wordpress-video-image-gallery-slideshows/">Making WordPress video, image gallery / slideshows responsive</a></p><h2></h2>
<h2>Make responsive slideshows in WordPress</h2>
<p>This plugin converts a WordPress built in image gallery  into  responsive slideshow. It uses the <a href="http://flex.madebymufffin.com/">FlexSlider</a> jQuery image slider, and requires no configuration from the user.</p>
<p>You can customize the look of the slideshow by coping it&#8217;s CSS file (gallery-to-slideshow.css) in to your theme. That way you will not loose your customized looks when updating the plugin in the future.</p>
<h4>Responsive Slideshows: <a title="Gallery to slideshow plugin download" href="http://wordpress.org/extend/plugins/gallery-to-slideshow/" target="_blank">Gallery to Slideshow</a></h4>
<p><a title="Gallery to slideshow plugin download" href="http://wordpress.org/extend/plugins/gallery-to-slideshow/" target="_blank">Download</a></p>
<p>&nbsp;</p>
<h2>Make videos in WordPress responsive</h2>
<p>Make your videos in Wordpress responsive using the FitVids jQuery plugin for WordPress</p>
<h4>Responsive Video content : <a title="FitVids for wordpress plugin" href="http://wordpress.org/extend/plugins/fitvids-for-wordpress/" target="_blank">FitVids for WordPress plugin</a></h4>
<p><a title="link to FitVids for WordPress plugin download" href="http://wordpress.org/extend/plugins/fitvids-for-wordpress/" target="_blank">Download</a></p>
<div></div>
<p><a href="/">Blissful Interfaces - web design development</a></p>]]></content:encoded>
			<wfw:commentRss>http://blissfulinterfaces.com/responsive-wordpress-video-image-gallery-slideshows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making WordPress images responsive</title>
		<link>http://blissfulinterfaces.com/making-wordpress-images-responsive/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=making-wordpress-images-responsive</link>
		<comments>http://blissfulinterfaces.com/making-wordpress-images-responsive/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 22:34:00 +0000</pubDate>
		<dc:creator>Thanushka</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[responsive wordpress]]></category>

		<guid isPermaLink="false">http://blissfulinterfaces.com/?p=542</guid>
		<description><![CDATA[<p><p><a href="/making-wordpress-images-responsive/">Making WordPress images responsive</a></p><p>In this tutorial we will be adding the required CSS and PHP functions to make the images in your wordpress site responsive.</p></p><p><a href="/">Blissful Interfaces - web design development</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="/making-wordpress-images-responsive/">Making WordPress images responsive</a></p><h3>Method 1:</h3>
<h4>The CSS</h4>
<p>Add the following code to your CSS file. That will make the images scalable according to screen size.</p>
<div class="codesnip-container" >img{max-width: 100%;}</div>
<div class="codesnip-container" >img{ -ms-interpolation-mode: bicubic; }</div>
<p>&nbsp;</p>
<h4>Removing automatic height and width in WordPress &lt;img&gt; tags</h4>
<p>Now drag the window to see the image scaling in action. You&#8217;ll notice that the images in your WordPress blog scale weirdly. They horizontal scaling fine but vertical scaling in WordPress images are all wrong.<br />
To make the images resizable proportionately in WordPress, We have to remove the automatic width and height values WordPress add for &lt; img &gt; tags.</p>
<p>As an example, We have to change this:</p>
<div class="codesnip-container" >&lt; img class=&#8221;imgclass&#8221; src=&#8221;../images/featuredtmb.jpg&#8221; alt=&#8221;alt comes here&#8221; width=&#8221;100&#8243; height=&#8221;100&#8243; /&gt;</div>
<p>To This:</p>
<div class="codesnip-container" >&lt; img class=&#8221;imgclass&#8221; src=&#8221;../images/featuredtmb.jpg&#8221; alt=&#8221;alt comes here&#8221; /&gt;</div>
<p>For the images that are in a post or a static page/template page, all you have to do is, add the above CSS to the style.css file, and then remove the &#8216;width&#8217; and &#8216;height&#8217; properties from the &lt; img &gt; tag in your WordPress editor. That&#8217;s it!<br />
But for the image that are displayed dynamically by WordPress, such as post thumbnails, the width and height needs to be removed dynamically using a function.</p>
<p>Add the following function to your functions.php file.</p>
<div class="codesnip-container" >function remove_wp_width_height($string){<br />
return preg_replace(&#8216;/\/i&#8217;, &#8221;,$string);<br />
}</div>
<p>Then when you call for those post thumbnail images in you template.php page, replace,</p>
<div class="codesnip-container" >the_post_thumbnail();</div>
<p>With This:</p>
<div class="codesnip-container" >echo remove_wp_width_height(get_the_post_thumbnail(get_the_ID(),&#8217;large&#8217;));</div>
<p>That&#8217;s it. Drag and resize the browser to see your responsive WordPress images in action! Here&#8217;s a <a title="Portfolio" href="/web-design-portfolio-2011/">demo</a>.</p>
<p>&nbsp;</p>
<hr />
<p>&nbsp;</p>
<h3>Method 2:</h3>
<p>The above will not work for some themes.<br />
If you are one of the few that  it did not work, you can still get your image issue solved using below function.</p>
<p>Add the following function to your functions.php file.</p>
<p>This removes inline width and height attributes from images retrieved with 
<div class="codesnip-container" >the_post_thumbnail()</div>
<p>,<br />
and prevents those attributes from being added to new images added to the editor.</p>
<pre>
<div class="codesnip-container" >add_filter( 'post_thumbnail_html', 'remove_thumbnail_dimensions', 10 );  
add_filter( 'image_send_to_editor', 'remove_thumbnail_dimensions', 10 ); 
function remove_thumbnail_dimensions( $html ) {     
$html = preg_replace( '/(width|height)=\"\d*\"\s/', "", $html );    
return $html; }</div>
</pre>
<p><a href="/">Blissful Interfaces - web design development</a></p>]]></content:encoded>
			<wfw:commentRss>http://blissfulinterfaces.com/making-wordpress-images-responsive/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>Build a Responsive WordPress Theme Tutorial</title>
		<link>http://blissfulinterfaces.com/build-a-responsive-wordpress-theme/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=build-a-responsive-wordpress-theme</link>
		<comments>http://blissfulinterfaces.com/build-a-responsive-wordpress-theme/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 21:10:05 +0000</pubDate>
		<dc:creator>Thanushka</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[responsive wordpress]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blissfulinterfaces.com/?p=523</guid>
		<description><![CDATA[<p><p><a href="/build-a-responsive-wordpress-theme/">Build a Responsive WordPress Theme Tutorial</a></p><p>Build a responsive WordPress theme from your existing WordPress theme; using CSS3 Media Queries.</p></p><p><a href="/">Blissful Interfaces - web design development</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="/build-a-responsive-wordpress-theme/">Build a Responsive WordPress Theme Tutorial</a></p><p>A responsive design means a layout that responds well to different screen sizes. Such as iPad, tablets, Smart Phones and Desktop. This tutorial explains what it takes to make your existing Wordpress theme responsive in a few simple steps.</p>
<p>What you should already know:<br />
1. How to build a wordpress theme<br />
2. CSS knowledge</p>
<p>&nbsp;</p>
<p>In this tutorial we are going to make a child theme and use CSS media queries to make it work properly in multiple screen sizes.</p>
<p>1. In the wordpress &#8216;themes&#8217; folder, Create a new folder and name it &#8216;multiplescreen&#8217;.</p>
<p>2. Create a CSS file and save it as <em>&#8216;style.css&#8217;</em> in the <em>&#8216;multiplescreen&#8217; </em>folder.<br />
A &#8216;<em>style.css&#8217; </em>is the only required file for a child theme. Add the following code to the newy created <em>&#8216;style.css&#8217;</em>  file.<br />
<strong>Importent: Let&#8217;s assume your existing theme is called &#8216;mynormalWPtheme&#8217;.</strong> Replace the &#8216;<em>mynormalWPtheme</em>&#8216; with your themes name.</p>
<p>&nbsp;</p>
<div class="codesnip-container" >/*<br />
Theme Name: mynormalWPtheme Child<br />
Theme URI: http://www.yourdomain.com/<br />
Description: Child theme for the mynormalWPtheme<br />
Author: Your Name<br />
Author URI: http://www.yourdomain.com<br />
Template: mynormalWPtheme<br />
Version:0.1.0<br />
*/</div>
<p>As with any WordPress theme, the information header must be at the top of the CSS file. The only difference is that, in a child theme the Template: line is required, so that WordPress knows which theme is the parent of this child theme.</p>
<p>Now we have to call our parent WordPress stylesheet styles in to the child theme. Add the following code to do so. @import url.. calls the parent theme&#8217;s CSS to the child theme&#8217;s CSS.</p>
<div class="codesnip-container" >@import url(&#8220;../twentyten/style.css&#8221;);</div>
<p>To see if the child theme is working, lets change the H1 titles of the child theme to orange. replace the above code with following:</p>
<div class="codesnip-container" >@import url(&#8220;../twentyten/style.css&#8221;);<br />
h1<br />
{<br />
color: #ffb400;<br />
}</div>
<p><strong>Importent: Make sure no styles appear above @import url.. That prevent your child stylesheet from importing the parent styles.</strong></p>
<p>Log in to the WordpPress admin, Activate mynormalWPtheme Child in the Appearence &#8211;&gt; Themes. Now check your wordpress site in a browser. You should see a exact copy of your parent theme with orange h1 titles.</p>
<p>Now we need to define what are the media screen sizes we will be designing for. I have categorized them to 3.</p>
<p>1. SmartPhones- less than 320px<br />
2. Tablets &#8211; 321px to 768px<br />
3. Descktop &#8211; 769px and above</p>
<div class="codesnip-container" >@media screen and (max-width:320px)<br />
{<br />
h1 {<br />
color: #ffb400;<br />
}<br />
}<br />
@media screen and (min-width:321px) and (max-width:768px)<br />
{<br />
h1 {<br />
color:#0096ff;<br />
}<br />
}<br />
@media screen and (min-width:769px)<br />
{<br />
h1 {<br />
color: #693573;<br />
}<br />
}</div>
<p>Save the CSS file. To test these media queries, simply open your site in a browser and drag and resize the window. You will see the h1 color change when browser window size change.<br />
You can also test it through Dreamweaver CS5 multiscreen option (Multiscreen Preview button in the Document toolbar).<br />
Next, you can add media specific styles to override specific parent templates styles. As an example, the top navigation which is horizontal in desktop, could be made to be vertical in the smartphones. Remember to remove the h1 styles we added for testing purposes.</p>
<p>This is how this web site looks on multiple media screens.</p>
<p><img class="alignnone size-full wp-image-719" title="build a responsive WordPress theme" src="/wp-content/uploads/2011/10/Screen-Shot-2011-11-23-at-6.33.21-PM.png" alt="" /></p>
<p><a href="/">Blissful Interfaces - web design development</a></p>]]></content:encoded>
			<wfw:commentRss>http://blissfulinterfaces.com/build-a-responsive-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
	</channel>
</rss>
