我在博客站点上添加了自定义Java脚本的最新文章小部件,因此它在文章图片旁边显示文章标题(A部分-请参见图片) 但是我想将帖子标题放在帖子图片下方(例如B部分。请参阅图片。我尝试了很多次,但是出了错。 请帮助我纠正这个问题?
这是完整的代码: https://textuploader.com/1du1w
图片链接: https://i.imgur.com/oG5oZko.gif enter image description here
答案 0 :(得分:0)
一种实现方法是替换脚本的这一部分:
<td><a href="'+posturl+'" ><img src="'+img[i]+'" width="'+thumbwidth+'" height="'+thumbheight+'"/></a></td><td>'+icon+'<a href="'+posturl+'" >'+posttitle+'</a></td>
宽度:
<td><a href="'+posturl+'" ><img src="'+img[i]+'" width="'+thumbwidth+'" height="'+thumbheight+'"/><span class="title"> '+icon+' '+posttitle+'</span></a></td>
这会将所有元素(图像和标题)放入一个表td中,并且还在标题中添加了span类,以便我们可以使用少许CSS进行样式设置: