Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #424845

    Hi,

    Is it possible to make the read more links in the Blog articles module an image?

    Kind regards

    #424979

    Hi JBkvns!

    Try adding this to your custom CSS.

    .read-more-link a {
      left: -9999px;
    }
    .read-more-link {
      color: red;
      background: red;
      position: absolute;
      bottom: 0px;
      right: 0px;
      width: 30px;
      height: 30px;
      overflow: hidden;
    }
    .read-more-link:after {
      content: ">";
      color: white;
      position: absolute;
      bottom: 5px;
      right: 9px;
      font-size: 18px;
    }

    Best regards,
    Elliott

    #425136

    Awesome, works! Thanks!

    Kinds regards

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