Wednesday, April 30, 2014

List Of Limits On Blogger

We try to give you a lot of room to play here on Blogger, so you'll see that a lot of the important "limits" here aren't really very limiting. But just in case you were wondering, here is some information about what a single Blogger account will hold.
Number of Blogs: You can have up to 100 blogs per account.
Number of Posts: There is no limit on the number of posts you can have on one blog. They will all be saved on your account (unless you manually delete them) regardless of whether you are publishing archives or not.
Size of Posts: Individual posts do not have a specific size limit, but very large posts may run you up against the page size limit. (See the next item.)
Size of Pages: Individual pages (the main page of your blog, or your archive pages) are limited to 1 MB in size. This will allow for a few hundred pages of text, but it may be a problem if you are listing hundreds of posts on the front page of your blog. If you hit this limit, you will see an error message saying "006 Please contact Blogger Support." You can get around this error by lowering the number of posts on your main page, which will have the added benefit of making your page load faster as well.


Number of Comments: A post can have any number of comments. As with archived posts, if you choose to hide comments on your blog, all pre-existing comments will remain saved on your account.
Number of Pictures: Up to 1 GB of total storage, shared with Picasa Web. If you've upgraded to Google+, your photos will be stored in Google+ Photos, where you have 15GB of storage space shared with Gmail and Drive.
Size of Pictures: If you are posting pictures through Blogger Mobile there is a limit of 250K per picture.
Team Members: There is a limit of 100 members per blog.
Number of Labels: Up to 2000 unique labels per blog and 20 per post.
Blog Description: Limited to 500 characters, with no HTML. Adding additional characters or HTML may cause it to revert to a previous setting.
"About Me" Profile Information: Maximum of 1,200 characters.
Profile Interests and Favorites: Maximum of 2,000 characters in each field.

Tuesday, April 29, 2014

Awesome WordPress Themes For Free


Alexandria

DownloadHTML5 & CSS3 Responsive WordPress Business theme with business style home page layout with welcome section, 3 product/services blocks and a client quote/testimonial section. 2 logo section layout options. 2 premade (Blue, Red) ready to use color schemes/skins. 3 widget areas in footer, 1 widget area in sidebar. 2 page layouts including a full width page template. Social media icons in footer.

Twenty Fourteen

DownloadIn 2014, our default theme lets you create a responsive magazine website with a sleek, modern design. Feature your favorite homepage content in either a grid or a slider. Use the three widget areas to customize your website, and change your content's layout with a full-width page template and a contributor page to show off your authors. Creating a magazine website with WordPress has never been easier.

Twenty Thirteen

DownloadThe 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.

Itek

DownloadiTek - Business & WooCommerce centric theme ideal for building websites in any give business/eCommerce niche online. Itek comes packed with the following features: 4 menu locations (3 standard + 1 Social links), 2 Widget areas (Sidebar + Showcase area), 3 Custom Widgets (Itek Ephemera, Itek Page Showcase + Itek Recent Posts), Custom header with Parallax effect below top menu, Some cool transition effects, Support for custom background color/image, WooCommerce support, bbPress support and the theme is Translation Ready! View demo here: http://www.wpstrapcode.com/itek/

Fifteen

DownloadFifteen is the Photography or Portfolio based WordPress theme, best suitable for Professional Artists. This theme is built on the HTML5 and CSS3 Framework, Bootstrap 3.0 From Twitter. With a Very Modern Design, this theme is 100% Responsive. 3 Column Grid Layout for Home and Archive Pages, make it look very stunning. It supports Featured images, Custom Widgets, Cool Animations, Full Width Pages and much more.

DMS

DownloadA responsive drag-and-drop design management system for pro websites based on HTML5 and CSS3. PageLines will help you do amazing things faster & easier than ever before. Designed by PageLines in California. Twitter @pagelines

Catch Kathmandu

DownloadCatch Themes has come up with a full-fledged Corporate/Blog premium WordPress theme, Catch Kathmandu! The design is highly customizable and you can tailor the display to your taste with a few easy clicks. Based on HTML5 and CSS3, it is a responsive theme which automatically adapts to the screen's size, regardless of the devices the visitors use. It has a large screen layout which elegantly extends to 1280 pixels! If you are looking for a clean professional space which accommodates your visuals and yet provides you with ample amount of textual area, Catch Kathmandu is your perfect find. Active community at http://catchthemes.com/support-forum/

Sugar and Spice

DownloadSugar and Spice is chic, feminine theme created with wedding blogs and wedding industry in mind. Features include option to upload your own logo & favicon, customizable colors and background, 3 different layout options. And guess what - it's responsive too! Perfect for wedding related businesses - event planners, florists, photographers, cupcake shops or bakeries. Showcase your brand with style!

Spacious

DownloadSpacious is an incredibly spacious multipurpose responsive theme coded & designed with a lot of care and love. You can use it for your business, portfolio, blogging or any type of site. It has 4 page layouts, 6 page templates, 13 widgets areas, 5 custom widgets focusing on business template, awesome slider, primary color option to match your logo & website, boxed & wide layout, light & dark color skin, translation ready and many more. You can get free support in http://themegrill.com/support-forum/ and check the demo at http://demo.themegrill.com/spacious/.

How To Make WordPress Theme Responsive A Easy Step

These days, almost everyone has an internet-viewing device with them, all the time. May it be a tablet or a smartphone, this gadget slips right into our pockets and plays an important role of our daily lives. The whole idea of this so-called smart device is its ability to access the Internet and do virtually every task we would usually do on a full-sized PC while keeping the size small enough to make it light and portable. However, a new problem arises: the web wasn’t made for smartphones. Their screens are too small, so the content of the web is pretty hard to read. If you own a website, you will probably loss a large number of readers just because of this.
Then what to do? The best thing that you can do is make your site become responsive, which, in other words means that the site will adjust itself (its layout and everything) to fit into any screen size. At this tutorial, we will tell you how to make your WordPress theme responsive. Although now nearly all themes in the market are already equipped with responsive design, this tutorial will still help you modify those themes.
At this tutorial, for practice we will use the default WordPress theme, TwentyTen, which does not yet have a responsive design.

If you are new to web programming, a little tool named ‘Element Inspector’ may help you a lot to find the right layers you have to modify. All modern browsers should have it. Mozilla Firefox have had it since v10.0, Internet Explorer since v9. If we have to recommend, we will choose Opera or Google Chrome.
Inspect element process with Opera web browser
To create a responsive design, you just need to modify only one file, style.css.
Firstly, put this code at the very end of your style.css:
1
2
@media only screen and (max-width: 480px) {
}
This code is a conditional styling code which will tell the browser that if the screen size is less or equal than 480px, it should do all the styling parameters set in between the brackets. 480px is the maximum screen size of smartphones that exist in the market.
For tablets, you can use 959px. The conditional code will be:
1
2
3
@media only screen and (min-width: 768px) and (max-width: 959px) {
 
}
For the sake of simplicity, we will only discuss responsive design for smartphone at this tutorial. Once you master this, creating a responsive design for tablets will be just as easy.
After you type the conditional code, put all codes that we have below in between the brackets.
The first code sets the main frame size of TwentyTen to 400px:
1
2
3
4
5
#access .menu-header, div.menu, #colophon, #branding, #main, #wrapper, #site-title {
 
width:400px;
 
}
The next code sets the main container size:
1
2
3
#container {
width:100%;
}
The container layer is set to be 100% which means 100% of the above layer (see the code before, the code is declared as 400px, so container layer width will become 400px since 400px x 100% is still 400px).
The next code hides the the header image of TwentyTen. With this code you can hide or resize the header image:
1
2
3
#branding img {
display:none;
}
The code above sets the header image to be hidden, but if you want to display the image, you will need to resize it:
1
2
3
#branding img {
width:100%
}
At the code above, the width is set to 100% which means 100% x the above layer width (check the first code, the layer width is set to 400px).
The next code hides or re-positions the blog description:
1
2
3
4
5
6
7
8
9
#site-description{
display:none;
}
1
The code above hides the blog description, but if you insist that the description be displayed, just change that code so it looks like this:
1
#site-description{
float:left;
}
The next code sets the navigation bar size (width):
1
2
3
#access{
width:100%;
}
That code is set to 100%, which means 100% x the width of layer above it (see the first code, the width is declared as 400px).
The next code sets the width of the content container. On TwentyTen, this layer wraps the post content layer and also the sidebar layer:
1
2
3
#content{
width:100%;
}
That code is set to 100%, which means 100% x the width of layer above it (see the first code, the width is declared as 400px).
The next code sets the post content layer margin (position):
1
2
3
.hentry{
margin-left:-13px;
}
That code will make the post content layer positioned 13px to the left.
The next code makes the sidebar hidden:
1
2
3
4
5
6
7
8
9
#primary{
display:none;
}
 
This one resizes the footer section:</pre>
<blockquote>
#footer{
width:100%;
}
With this code you will only resize the main layer of footer, not its content.
The next code re-positions the WordPress credit text:
1
2
3
4
#site-generator {
float:left;
margin-top:5px;
}
And the last code sets the width of the footer border (if you check the TwentyTen theme, you will notice there is a black border at the footer):
1
2
3
#colophon {
width:100%;
}
OK, that’s it! Your copy of the TwentyTen theme is now responsive!

Source:- http://colorlabsproject.com/tutorials/make-your-wordpress-theme-responsive/