Read more text on bottom of posts

Support Area Forums Grassroots Read more text on bottom of posts

Viewing 3 posts - 1 through 3 (of 3 total)
URL to the page in question: http://theskyisnotlimited.org/dev/our-work/
  • Author
    Posts
  • #38369
    wendy Butcher
    Participant

    Is there a way to replace “read more” on bottom of blurbs of posts to a button type? We want to make it look more prominent. Thanks in advance.

    #38372
    Bill Robbins
    Moderator

    You could add something like this to the Custom CSS to turn that link into a button:

    
    a .more-link {
      padding: 5px 10px;
      background-color: #000;
      color: #fff;
    }
    
    a:hover .more-link {
      background-color: #fff;
      color: #000;
    }
    

    The top style there would be for the default state of the link and the second one is for the hover. Feel free to change the colors there to whatever you’d like to have.

    Hope that helps out,
    Bill

    #38373
    Bill Robbins
    Moderator

    You could add something like this to the Custom CSS to turn that link into a button:

    
    a .more-link {
      padding: 5px 10px;
      background-color: #000;
      color: #fff;
    }
    
    a:hover .more-link {
      background-color: #fff;
      color: #000;
    }
    

    The top style there would be for the default state of the link and the second one is for the hover. Feel free to change the colors there to whatever you’d like to have.

    Hope that helps out,
    Bill

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Read more text on bottom of posts’ is closed to new replies.