Latest Post COMMENTS Apple Google Cool Sites Twitter Text Art Fantasy HOME

- Blogger Tricks -

How do I change the destination of the home link at the bottom of my blog?

Say the destination URL is http://www.AlfredoStudio.com

Go to Dashboard - Design - Edit HTML - Check the box next to 'Expand Widget Templates' - Find for the following line:

<a class='home-link' expr:href='data:blog.homepageUrl'><data:homeMsg/></a>

Change it to:

<a class='home-link' expr:href='"http://www.AlfredoStudio.com"'><data:homeMsg/></a>

You might have to do this twice, depending to your template, as the same line will be found at two different places (one pertaining to mobile templates). You have to change both of them to play safe. Also, note that at the start and end of the URL, there is a double quote and a single quote.


* How do i delete the "older posts" link?

Goto your template, Edit HTML and click the Expand checkbox.

Look for this code and remove it all

<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 + &quot;_blog-pager-older-link&quot;' expr:title='data:olderPageTitle'><data:olderPageTitle/></a>
      </span>
    </b:if>

You might have to do this twice, depending to your template, as the same line will be found at two different places (one pertaining to mobile templates).

Until next time.

~ Alfredo Zavala