Showing posts with label responsive website. Show all posts
Showing posts with label responsive website. Show all posts

Wednesday, October 16, 2013

Top 10 Free Responsive Website Design Testing Tools.

Once you want to generate a website, the site must be a responsive one. We have already discuss that why we need to make our websites responsive and how to make our websites responsive. This tutorial today would recommend best tools for checking your sites to make sure whether they are responsive or not.


1. Responsive Design Bookmarklet

Responsive Design Bookmarklet is a handy tool for responsive design testing. You simply need to drag the bookmarklet above your bookmarks bar and it will be applied in your browser. How it works : Firstly, Toggle a fake keyboard to see how much space is visible when users are entering data in forms. There after Toggle CSS Refresh.
When you save a CSS-file, the changes are directly implemented, without any need of refreshing the browser you are working in. Lastly, close the bookmarklet and return to the current page. This lets you preview the current page on screen widths that fits the size of tablets and smartphones.

2. jResize Plugin

jResize is a responsive web development tool, built in jQuery for assisting the workflow of developers on responsive projects. Embedded in the page are iframes at different widths. So, it becomes quite easy to resize your HTML within your browser. All you have to do is download this cool tool and when you click the width you want, the size changes accordingly.

3. resizeMyBrowser
resizeMyBrowser is a tool for responsive web design that allows you to choose the dimensions of your browser for testing. Users can choose between 15 different presets or enter their own custom screen sizes.

4. Screenqueri.es
Screenqueri.es is a pixel perfect responsive design testing tool that lets you test your responsive design on 30 different device resolutions presets or check with custom resolution by resizing window.

The Responsive Calculator is a tool that makes it easy for the designers easy way to convert pixel to percent in a given context.  It helps you turn your PSD pixel perfection into the start of your responsive website. Simple click does the needful.

Screenfly  by QuirkTools is an online digital device simulator tool that lets users view their responsive website in different devices viz. desktop, tablet, mobile or TV. It is easy to use and as mentioned gives you a wide variety of options like visualization on variously sized desktop monitors and on a virtual television screen. Besides it has options to enable or disable scrolling or even to rotate the display.

Responsinator is a cool tool/an online portal that lets you preview your web page on smartphones and tablets in both portrait and landscape mode. Besides, Responsinator gives you a realistic experience of viewing your site on multiple screens. Just enter a URL and preview it on an iPhone, iPad, Kindle, and other Android phones.

Viewport resizer is a browser-based tool that lets users test any website’s responsiveness. Users simply need to save the bookmarklet, go to the page they want to test, click on the created bookmarklet and check all type of screen resolutions of the page.

This is a simple and helpful tool that asks you to enter the URL of the site/page that you want to test and then select the device of your choice.

Developed by Edward Cant, ReView is a dynamic viewport system that provides efficient responsive web design viewing choice. Users can opt from ‘Opt-In’ and ‘Opt-Out’ responsive design states.

Original Source From: http://thedesignblitz.com/

Friday, October 11, 2013

Step by Step Tutorial for Creating a Responsive Site.

The trending for designers to make a responsive website (and this post will show you why you need to make a responsive website.). Responsive Web design helps you display your site perfectly on the ever-growing number of devices and different screen sizes that exist now. And WordPress has the most users for website users to create a website. This post today will show you how to make a responsive site with WordPress.


1. Choose a responsive WordPress Theme for your site.
People have different intention for making a website like blogging, sharing, earning money and more. So people choose different kinds of style WordPress Theme to decorate their sites. You can select one for your site on this post -- Top 8 Free Responsive WordPress Themes Sharing. Maybe a free one can meet your requirement.

How to choose a very responsive theme?
Looks. This should be your first consideration when choosing a theme. A theme should be able to give you the look you want without having to spend days and hours customizing it.
Performance. Themes may often affect your site's loading speed, so stay away from themes that call on too many files, or forces you to load files with too many kilobytes. A theme should not slow your site down.
Customizability. This is probably not a problem if you are buying a theme, but if you are looking for free ones, then there might be some limitations on what you could customize and personalize with your theme.

2. Transform your current theme into a responsive one.
Once you have already get a favored WordPress Theme but it is not responsive. How to handle this problem?
Get your media queries in order.
When you get a WordPress theme, you should have a stylesheet that is used on both mobile and desktop versions of your site. You would only have to specify how particular screen sizes would be different from this default style.
You would need to define the maximum width that this set of styles changes would apply for. To do that use:
@media screen and (max-width: 320px)
This means that for screen sizes measuring 320 pixels wide or smaller, a different set of styles would be used.
Other screen sizes you might want to use are 480 pixels, 780 pixels and 1024 pixels.

② Know how to deal with images.
Images can be a problem if they are too big and they spill out of their containers. To ensure that this never happens, add the following code to your CSS
body img {
max-width: 100%;,br /> }
Either that or you upload different image sizes, which will be loaded accordingly depending on the size of the device used.

③ Use the appropriate text size.
When working with a smaller layout on a small screen, your text might appear very big. So just adjust the text size using this handy code:
body {
font-size: 60%;
line-height: 1.4em;
}

Change other elements appropriately.
Other elements in the layout that you need to change include the overall width of the site, the sidebar, the content, footer and widgets.

Know how to deal with navigation.
There are a lot of techniques to help you get a more responsive navigation on your site. For one, you could use a drop down box rather than a navigation bar. Or you could have your navigation menu take up an entire page and create an app-like environment for your site. Or even getting plugins to handle the navigation menu for you.

Post Original From: http://www.webdesign.org

LinkWithin

Related Posts Plugin for WordPress, Blogger...