The article discusses Jasper AI, transform the way you create content with Jasper AI! Discover the power of artificial intelligence in writing with its AI-powered content creation service. Create high-quality, original content for your blogs, business, or personal needs in a matter of seconds. With user-friendly interface and affordable pricing, Jasper AI is the perfect tool for enhancing your writing skills and improving productivity. Check out here for a comprehensive review and real-life examples of using Jasper AI.
Making Blogger Responsive Mobile-friendly Template Design | Responsive Web Development
Responsive mobile-friendly template design —
Many bloggers used to search; how to make my blogger blog totally responsive on all mobile? How to build blog mobile-friendly to avoid Google penalty? How to make Blogger template Responsive & mobile friendly? How do I know if my blog template is mobile friendly? And so on.
Google has already updated the policies and it indicates that the mobile responsiveness has a significant impact on the website search rankings; so to avoid penalty your blog must have a mobile view for all devices. While making your Blogger responsive, you need to ensure that all the elements automatically resize in accordance with the screen size and resolution.
Now the question is how to make blogger template responsive and how we start to develop responsive blogger templates. And it's one of the tough tasks in making a website mobile responsive because it is a great job to manage HTML5 and CSS with @media queries. If you see, there are lots of where you easily get free basic responsive website templates for your website. But you need to leave your existing design.
Learn Responsive Web Development from scratch to build & develop a responsive web mobile layout using including flexible layouts, simple CSS3 media queries that produce flexible media to convert your current theme into mobile-friendly responsive look. This advanced tutorial provides you an introduction to building responsive web design for mobile layouts of any site, but especially for the blogger. This is an ultimate guide you need to follow that explains all about mobile friendly website design with the help of mobile friendly CSS in HTML5 which allows you to make blogger template mobile friendly & extremely responsive.
Last time we have seen responsive site checker. Learn more about a responsive website designing and the factors affecting in designing the websites. I knew, every visitor is like our customer, and it is a very important person for your blog, so then I made this tutorial after lots of troubleshooting with blogger template to help you for building a mobile website design so that your mobile visitor will not go back and become a regular reader of your blog.
Also, read: 3 Tips To Make Your Blog Load 10x Faster | Blogging Tips
Responsive Web Development: Multiple Screens, One Design
Responsive web design for mobile — Your site design is good for desktop but some of your's, it gets failed when it comes to the small screen. Here is advanced tutorial described for making the responsive blogger HTML template compared to old fixed layout template in which you can not only able to configure the widgets to show an alternate content for the mobile view but also you will able to customize the full mobile friendly template, place AdSense ad units only for mobile template too.You may also like to know; Improve Search Engine Ranking [PageRank] by Generating HTML Meta Tags
Making A Website Mobile Responsive
Mobile friendly website design - All new website are now built in HTML5. But by-default the blogger has provided only 7 templates which you can NOT edit as per your requirement, or it may cause different look than the one you are on now. Also there are lots of sites can provide free mobile template for your blog, even though they built a nice template for your site, they have some drawbacks as you cannot place AdSense ad widget, they gonna place their banner in your template more over some sites places ads and earn money from your mobile visitors.The main disadvantage of making blogger responsive mobile-friendly site according to me is that; it makes your website links look differently than original (it ads *.html?m=1), so social sharing stats varies.
Advantages of Building Responsive Website
You're now like a responsive website developer and learning something new for better future. Flexible or responsive template means one design which is automatically redesigned itself according to the screen size.- Forget about maintaining a separate website for mobile.
- It’s good in case of SEO.
- Your site links have remained same, so it doesn't cause any effect in social sharing statistics.
- Browser’s user agent doesn't cause an effect on the design.
Make Your Blogger Website Mobile Responsive
Before starting any work here or anywhere, you need to backup everything you need, in a case to restore all the things if happened any wrong. So backup all the settings and template you are using now.
- First go to Template >> Choose Mobile template >> Select Custom.
- Save
Screen size for responsive web design: Screen Detection
- Go to Template >> Edit HTML
- Add following code below
<head>
tag
<meta content='width=device-width, initial-scale=1.0' name='viewport'/>This Meta viewport is used for detecting the screen size then fed it to CSS for redesign accordingly.
As a professional, you must know; Blog vs. Website For Making Money | How Blogs Differ From Websites
Mobile friendly CSS - Designing Web Sites
We need to load CSS property for <body> according to screen-view:Find
<body>
and replace it by following code:<body expr:class='"loading" + data:blog.mobileClass'>
Widget Customization
Now we can allow particular widgets to be shown on the mobile view. How?Normally in HTML widget it defined as:
<b:widget id='ID-type' locked='true' title='Widget-Title'/>Here you just need to add mobile tag to it:
<b:widget id='ID-type' locked='true' mobile='yes' title='Widget-Title'/>This mobile property tag will cause that widget to be shown in mobile view.
Mobile Property Tags | Meaning |
---|---|
mobile=‘yes’ | Show in mobile-view |
mobile='no' | Don’t show in mobile-view |
mobile='only' | Show in only mobile-view |
Mobile friendly CSS Customization
Now actual hard work is started now. If you know CSS editing well then you can you following class to design you mobile template.
.mobile #sidebar-wrapper {
Display:none; } | This class will not allow sidebar to be shown in mobile view. |
RECOMMENDED: Top 25 Ways to STAY MOTIVATED FOR BLOGGING | Push Yourself
You may also like to know; Online Shop Act Registration @Rs.29 For Bloggers/ YouTube Channel Owners/ Proprietor/ Online Business
Advanced conditional CSS Customization
Learn to make web design according to screen-size conditions.
@media screen and (max-width:320px){
#sidebar-wrapper{display:none; } |
This class will not allow sidebar to be shown in mobile view if screen-size is less than 320px like for smartphones. |
@media screen and (max-width:768px){
/* CSS for big size screens like tablets */ } |
This class will load the CSS you have defined in it when screen size is less than 768px like tablets. |
You need to read for full detailed CSS tutorial: How to Build Responsive Blogger Template CSS : Advanced Tutorial
HTML5 Mobile Responsive Template Customization
Now we also make changes in HTML simultaneously. For this, you just need to know following mobile condition;<b:if cond="data:blog.isMobile"> <!-- Show this for mobile-vew--> <b:else/> <!-- Show this if it’s not mobile screen or for desktop --> </b:if>
What you learn making Blogger responsive?
A responsive template is also important as your current template in playing a role for visitors. It makes considerably changes in your bounce rate. We really need to be aware and have to grab a good position in the market.For responsive website samples check this page on mobile and desktop, you will get what you are learning and what you need to do with mobile website design.
What Next?
In the next tutorial, we are actually going to edit complete CSS and HTML of blogger template and will see how to develop it according to the screen view.Stay addicted.
This is one of the best way to go with... Making it ourself is really Hugh task for any one.. I did it after a lots of tries.. Keep it up such posts.. really need on this current time...
Nice tutorial. Thanks for sharing.