AllInWorld99 provides a reference manual covering many aspects of web programming, including technologies such as HTML, XHTML, CSS, XML, JavaScript, PHP, ASP, SQL,FLASH, jQuery, java, for loop, switch case, if, if else, for...of, for...in, for...each,while loop, blogger tips, blogger meta tag generator, blogger tricks, blogger pagination, client side script, html code editor, javascript editor with instant output, css editor, online html editor, materialize css tutorial, materialize css dropdown list,break, continue statement, label,array, json, get day and month dropdown list using c# code, CSS button,protect cd or pendrive from virus, cordova, android example, html and css to make android app, html code play,telerik show hide column, Transparent image convertor, copy to clipboard using javascript without using any swf file, simple animation using css, SQL etc. AllInWorld99 presents thousands of code examples (accompanied with source code) which can be copied/downloaded independantly. By using the online editor provided,readers can edit the examples and execute the code experimentally.


Blogger Read More Button

    Blogger display latest post in home page with short description only, if any one willing to open read full content then you need to press the "Read More" button, after only user can view the full page content. Some one want to change the text and/or the style of the button. It is very easy to change the step is

Step 1:
   After login and enter your post Click template and Edit HTML.

blogger edit html


Step 2:
  After clicking the "Edit HTML" you will see like below image.

edit Blogger HTML code


Step 3:
  Press Ctrl + F and find the word "jump-link".

Find jump-link in blogger


the code is shown below
    <b:if cond='data:post.hasJumpLink'>
      <div class='jump-link'>
        <a expr:href='data:post.url + &quot;#more&quot;' expr:title='data:post.title'><data:post.jumpText/></a>
      </div>
    </b:if>


Step 4:
  If you want to change the text "Read More" to your text, just replace the "<data:post.jumpText/>" to your text like below.

    <b:if cond='data:post.hasJumpLink'>
      <div class='jump-link'>
        <a expr:href='data:post.url + &quot;#more&quot;' expr:title='data:post.title'>Open Page</a>
      </div>
    </b:if>

Change the Read More button style in blogger

Step 1:
  You can change the style of the button by apply some style to button. Add a class name "allinworldreadmore" to the <a> tag and remove the "jump-link" class..

    <b:if cond='data:post.hasJumpLink'>
      <div class='allinworldreadmore'>
        <a expr:href='data:post.url + &quot;#more&quot;' expr:title='data:post.title'>Open Page</a>
      </div>
    </b:if>

Step 2:
  Find the name using </head>.


Step 3:
  Just add the following code above the </head> tag.
<style>
.allinworldreadmore a {
    position: relative;
    color: rgba(255,255,255,1);
    text-decoration: none !important;
    background-color: rgba(219,87,5,1);
    font-family: 'Yanone Kaffeesatz';
    font-weight: 700;
    font-size: 2em;
    padding: 4px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0px 9px 0px rgba(219,31,5,1), 0px 9px 25px rgba(0,0,0,.7);
    -moz-box-shadow: 0px 9px 0px rgba(219,31,5,1), 0px 9px 25px rgba(0,0,0,.7);
    box-shadow: 0px 9px 0px rgba(219,31,5,1), 0px 9px 25px rgba(0,0,0,.7);
    margin: 100px auto;
width: 160px;
text-align: center;
-webkit-transition: all .1s ease;
-moz-transition: all .1s ease;
-ms-transition: all .1s ease;
-o-transition: all .1s ease;
transition: all .1s ease;
}

.allinworldreadmore a:active {
    -webkit-box-shadow: 0px 3px 0px rgba(219,31,5,1), 0px 3px 6px rgba(0,0,0,.9);
    -moz-box-shadow: 0px 3px 0px rgba(219,31,5,1), 0px 3px 6px rgba(0,0,0,.9);
    box-shadow: 0px 3px 0px rgba(219,31,5,1), 0px 3px 6px rgba(0,0,0,.9);
    position: relative;
    top: 6px;
}
</style>

apply stye on blogger html template


Preview

blogger read more button



Advertisement

0 comments:

Post a Comment

Total Pageviews