Remove "Take a Tour" text in blog summary buttons

Discussion in 'Infoway WordPress Theme' started by lovesdufy, May 29, 2013.

  1. lovesdufy

    lovesdufy New Member

    Joined:
    May 26, 2013
    Messages:
    1
    Likes Received:
    0
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .content-bar .post .post_content .read_more {
    -webkit-box-shadow: 1px 1px 1px #84a535;
    -moz-box-shadow: 1px 1px 1px #84a535;
    border: solid #658f02 1px;
    background: #658f02;
    }
     
    .content-bar .post .post_content .read_more:hover {
    opacity: 0.6;
    -webkit-transition: all 0.6s linear;
    -moz-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    -webkit-animation: bounceIn_custom 0.3s ease-in-out;
    -moz-animation: bounceIn_custom 0.3s ease-in-out;
    -o-animation: bounceIn_custom 0.3s ease-in-out;
    animation: bounceIn_custom 0.3s ease-in-out;
    }
    This will resolve your issue.
     

Share This Page