Postingan

Menampilkan postingan dengan label blogger tips and tricks

Dynamic Views in Blogger News

Gambar
At the end of March, Blogger has introduced something they never offered before, something entirely new, entirely cool, and undoubtedly – promising. What I am talking about? Dynamic Views. This new feature allows unthinkable earlier ability to present your content in several new and exciting ways. Google has introduced 5 new dynamic templates in Blogger. Now, you can view any Blogger blog as a  Flipcard, Mosaic, Sidebar, Snapshot and Timeslide . No need for any additional changes for your existing template, which is just an extra way to see what you have already. Dynamic views are different versions of your blog, in some way, different ways to navigate your blog, without changing your template, using Ajax, CSS 3 and HTML 5. What is all About? Who can use Dynamic View? These dynamic views will work on your blog if all of the following are true: ·          Your blog is public. Your readers don’t need to sign in to view your blog. · ...

How to make links open in new windows for Blogger blog?

Gambar
If you design your blogs with lots of links to other blogs and web sites, you probably like to make the links to the other blogs and web sites open in a new browser tab or window (depending upon reader preference). That helps with reader retention (for you), and increases convenience (for your readers). Unfortunately, in all of the Blogger GUIs, there's no selection for "Make links open in new window". If you want all links in your blog to open in a new window, you can do this with a simple template change as described below. If you want specific links to open in a new window, you will have to manually code each link individually. To make all links open in new window is amazingly simple. Just sign into Blogger DASHBOARD > DESIGN > EDIT HTML to open template editor Use keyboard shortcut ctrl+F to find <head> and immediately after that, add a single line <base target='_blank' /> so that it become <head> <base target='_blank' /...

How to Highlight Author Comment in Blogspot Blog?

This trick is to give a Highlight Author Comment. This will make the blog's owner comments looks different from the visitors’ comments. It is very useful and interesting blogger hack tips. You can see the example in my blog. Here is what to do to make a "Highlight Author Comment" effect in Blogspot. Credit for the trick goes to Trick Tips Blogger . 1. Login to blogger, then choose "Layout --> Edit HTML" . Don't forget to backup your template first. 2. Check the "Expand Widget Templates" box. 3. Copy this script and put it before ]]></b:skin> or copy to your CSS area. .comment-body-author { background: #E6E6E6; /* Background color*/ color: #000; /* Text color*/ border-top: 1px dotted #223344;border-bottom: 1px dotted #223344;border-left: 1px dotted #223344;border-right: 1px dotted #223344; margin:0; padding:0 0 0 20px; /* Posotion*/ } 4. Then find this code: <dl id='comments-block'> <b:loop values='data:post.commen...