AllBlogTools.com | Blogger Templates and Tricks

AllBlogTools.com | Blogger Templates and Tricks

Link to Blogger Templates, Tutorials, Tools | WordPress Themes | Allblogtools.com

Choosing Brilliant Images for Your Posts

Posted: 30 May 2012 12:17 AM PDT


This image has no alt text

Why read the book when there's the movie available? Probably that's what most people think in getting instant info about a topic so selecting an image for your post is essential in attracting more visitors in your blog and get them more interested.

An image is a useful tool to help your readers follow easily on what you've written, so here are some tips provided by James Adams to select the best image needed for your post.

  1. Relevance. Add images that are relevant to your post but don't go overboard by adding pictures just for the sake of adding one. Make it straight forward just like the texts you've made.
  2. Copyright. Keep in mind that not all images are available for others to use. There are copyrights on the net and in print. To be safe, it's better to use your own images or find one

That provides free use. There are sites that offer free use of images. If you will be using an image coming from another site, email or contact the owner and ask for permission to use.

  1. Editing. Edit your pictures before posting it. If the file is too large, make some adjustments. Having a clean image gets the point straight to your readers better than an unclear one. There are many great tools for editing an image, one is the popularly used Photoshop. There are also alternatives if you don't have Photoshop. You can also use Gimp which is free.
  2. Avoid. Consider other user's net speed connection, so you may try to avoid selecting images that may have loading factors. You don't want your readers get turned off when browsing your site and it loads slowly because of some animated images.
  3. Include. You may have to include images that are better to use and have unique illustrations. Familiar image loses its weight since people have seen it already on other sites, so look for something that associates well and relevant with your work.

 

 

How To Show/Hide Widgets On Certain Pages

Posted: 29 May 2012 11:50 PM PDT


This image has no alt text

Like one of my other recent posts, this Blogger trick has been going around the web for quite some time now, especially among experienced bloggers. But since there are still quite a number people asking how this is done, I thought I'd feature it for today's post.

One of the reasons why you'd want to hide a widget is to avoid cramming to much stuff on your page, which distracts your visitors; you only want the relevant and essential widgets to be visible depending on the content of the current page.

So how do you do this? Just follow these steps:

  1. On your Blogger dashboard, go to Design ('Template' for new interface) then 'Edit HTML'
  2. Check the 'Expand Widgets Template' box
  3. Search for the title of the widget you want to show/hide (press Ctrl+F). The code will look something like this:
<b:widget id='HTML' locked='false' title='WIDGET-TITLE' type='Profile'>
<b:includable id='main'>
WIDGET CODE GOES HERE
 </b:includable> </b:widget>

Once you find it, you'll also see a line of code that looks similar to the ones I highlighted in blue. All you have to do is wrap the widget's code with the following code below (highlighted in green):

Show widget only on Homepage:

<b:widget id='HTML' locked='false' title='WIDGET-TITLE-HERE' type='Profile'>
<b:includable id='main'>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
WIDGET CODE GOES HERE
</b:if>
 </b:includable> </b:widget>

Hide widget on Homepage:

<b:if cond='data:blog.pageType == "item"'>
WIDGET CODE GOES HERE
 </b:if>

Show widget only on Static Pages:

<b:if cond='data:blog.pageType == "static_page"'>
WIDGET CODE GOES HERE
 </b:if>

Hide widget on Static Pages:

<b:if cond='data:blog.pageType != "static_page"'>
WIDGET CODE GOES HERE
 </b:if>

Show widget on Selected Post:

<b:if cond='data:blog.url == "URL OF Selected Post"'>
WIDGET CODE GOES HERE
 </b:if>

Hide widget on Selected Post:

<b:if cond='data:blog.url != "URL OF Selected Post"'>
WIDGET CODE GOES HERE
 </b:if>

Notice the pattern? Well, now you know how it's done. Cheers!

 

 

 

 

Hiç yorum yok:

Yorum Gönder