<em>@deanandeva 212216 wrote:</em><blockquote>Thanks aman,
Im close I now have the following code:
a.readon {
background: #fff;
background: url("/images/stories/rmore.png") no-repeat;
color: #999999;
}
I want to remove the text “read more” entirely and just have the image?, is that possible? You can see here my issue http://c2conline.com.au</blockquote>
Change this::
a.readon {template.css (line 30)
background: url(“/images/stories/rmore.png”) no-repeat scroll 0 0 transparent;
color: #999999;
}
to
a.readon {template.css (line 30)
background: url(“/images/stories/rmore.png”) no-repeat scroll 0 0 transparent;
color: #999999;
display: block;
height: 25px;
text-indent: -999em;
}