Friday, April 29, 2011

Dealing with the bottom of the page

In the bottom of the blogspot pages we see these lines actually we do not like a lot:
Subscribe to: Posts (Atom)
Powered by Blogger.
These are easy lines to remove. I did it in funkymonks, now it seems cleaner. Here how I did it:

To remove "subscribe" thing
<b:include data='feedLinks' name='feedLinksBody'/>
delete in your html code.

To remove the "powered by" thing
find /* Footer part, to the end of this part add display:none;

Additional thing what did for funkymonks is this: playing with "older page" link, "home" links.
I deleted Home link for now and replaced older and newer page links with an image. Find this part in your code:


<b:includable id='nextprev'>
<div class='blog-pager' id='blog-pager'>
<b:if cond='data:newerPageUrl'>
<span id='blog-pager-newer-link'>
<a class='blog-pager-newer-link' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + "_blog-pager-newer-link"' expr:title='data:newerPageTitle'><data:newerPageTitle/></a>
</span>
</b:if>

<b:if cond='data:olderPageUrl'>
<span id='blog-pager-older-link'>
<a class='blog-pager-older-link' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + "_blog-pager-older-link"' expr:title='data:olderPageTitle'><data:olderPageTitle/></a>
</span>
</b:if>

<b:if cond='data:blog.homepageUrl != data:blog.url'>
<a class='home-link' expr:href='data:blog.homepageUrl'><data:homeMsg/></a>
<b:else/>
<b:if cond='data:newerPageUrl'>
<a class='home-link' expr:href='data:blog.homepageUrl'><data:homeMsg/></a>
</b:if>
</b:if>
</div>

Now, if you want to change the text, just delete these underlined parts and write you own text.
If you want to put an image source, delete them, put this: <img src="Image URL" />

Before and after:



......................................................................................................................................

No comments:

Post a Comment