Hi quest ,  welcome  |  sign in  |  registered now  |  need help ?
Showing posts with label Design. Show all posts
Showing posts with label Design. Show all posts

How to create blog content with ease

Written By joeneva on Friday, July 22, 2011 | 6:39 AM

how to create blog content with ease

Provide a list of blog content in my opinion is very important for a blogger, because it is one way to increase inbound links in our blog so that our blog is more optimized.

besides this, giving a list of contents on our blogs are also useful for promoting our previous posts so that visitors can read our previous posts.
Besides providing a list of the contents of the blog, you can also provide the related article in the post, it also aims to improve the SEO blog,

list view the content of the blog that we will create something like this:



Simply, to create a list of blog content with ease, please follow these steps:
1. Log into your blogger account
2. Choose the layout / layout
3. Select add gadgets
4. Select the HTML / javascript.
5. Give title list to the content or the title to your liking
5. copy-paste the code below

<div style="overflow:auto;width:490px;height:180px;padding:10px;border:1px solid #eee"><script style="text/javascript" src="http://sites.google.com/site/barajajs/listofcontent/contents.js"></script><script src="http://howto-trick.blogspot.com/feeds/posts/default?max-results=9999&alt=json-in-script&callback=loadtoc"></script>
</div>
http://howto-trick.blogspot.com/: replace with your blog address

width: 
550px: Replace width according to your desired, adjust the template

height: 
180px: Change her height to your liking


6. Then save and put it to your liking.

good luck.
6:39 AM | 0 komentar

how to remove readmore on the page

Written By joeneva on Monday, July 11, 2011 | 9:29 PM

how to remove readmore on the page
I've had a very frustrating thing for me to learn when blogs get a template that "readmore" it does not work perfectly.

I also do a variety of ways, by googling the various sites and ultimately the same, failed. I was not discouraged, and keep looking until you find it. and finally succeeded in this way.

it is there "readmore" on pages that can not be opened, even when I click on "readmore" but could not open the page in its entirety, but only partially,
http://howto-trick.blogspot.com/
Such events are caused because of "readmore" that does not fit the template, or less than perfect in the addition of java script,

if you ever experienced anything like it, maybe this trick can solve the problem.

remember: this way might not work on all templates

Ok just go ahead, please follow these steps:
1. Departure to Dashboard -> Design -> edit html
2. We recommend that you backup your template first to avoid mistakes
3. Click Expand Widget Templates
4. Find the code like below, (which is similar as below)
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<div expr:id='"summary" + data:post.id'><data:post.body/></div>
<script type='text/javascript'>createSummaryAndThumb("summary<data:post.id/>");</script>
<span class='rmlink' style='float:left'><a expr:href='data:post.url'>READ MORE - <data:post.title/></a></span>
</b:if>
<b:if cond='data:blog.pageType == &quot;item&quot;'><data:post.body/></b:if> 
5. After see the code, note the green color code, to eliminate the "readmore" on the page, there is little additional code. see code below, this is the result after adding the code.

<b:if cond='data:blog.pageType != &quot;item&quot;'>

<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<div expr:id='&quot;summary&quot; + data:post.id'><data:post.body/></div>
<script type='text/javascript'>createSummaryAndThumb(&quot;summary<data:post.id/>&quot;);</script>
<span class='rmlink' style='float:left'><a expr:href='data:post.url'>READ MORE - <data:post.title/></a></span>
</b:if>
</b:if>
<b:if cond='data:blog.pageType == &quot;item&quot;'><data:post.body/></b:if>
<b:if cond='data:blog.pageType == &quot;static_page&quot;'>
<data:post.body/>
</b:if>
6. Red code is the code that is added to the code above, note in detail, in addition to adding the code, there is also replaced.
7. good luck and hopefully useful.
9:29 PM | 0 komentar