在node.css
路径中
http://quaaoutlodge.com/sites/all/themes/marinelli/css/node.css
搜索span.teaser-readmore
并添加display: none;
如下
.teaser-meta span.teaser-readmore{
position: absolute;
display: none;
right:0px;
top:0px;
padding-left: 23px;
}
更新
你能试试这个吗node.tpl.php
<?php
if($teaser){
print l(t('Read more'), 'node/' . $nid, array('attributes' => array('class' => t('node-readmore-link'))));
}
?>
should be
<?php
if($teaser)
print
l(
t('Read more<span class="element-invisible"> about @title</span>'),
'node/' . $nid,
array(
'attributes' => array('class' => t('node-readmore-link')),
'html'=>TRUE
)
);
?>
你可以在这里阅读更多