Hi
I love this template and have added and customised it for my blog.
It works really well for the type of bog I have. I wanted one that you had to click for posts rather than it showing the whole post on the front page which this one does.
However I have a few problems I would like to fix if you could help please π
Firstly on the summery of posts it displays the title, thumbnail and some of the content. I would like to make the thumbnail clickable so that it will take you into the full post like the title does. Is there a way to do this. I found this bit of code below in the template which I think is to do with it, but Iβm not sure how to edit it to make it work.
Also is there a way to make the title fit into the box as longer titles instead of going to the next line just get cut off.
The [β¦.] can you change this to [read more]
Iβd really appreciate any help
Thanks
Love Jo
function createSummaryAndThumb(pID){
var div = document.getElementById(pID);
var imgtag = ββ;
var img = div.getElementsByTagName(βimgβ);
var summ = summary_noimg;
if(img.length>=1) {
if(thumbnail_mode == βfloatβ) {
imgtag = β;
summ = summary_img;
} else {
imgtag = β;
summ = summary_img;
}
}
var summary = imgtag + β + removeHtmlTag(div.innerHTML,summ) + β;
div.innerHTML = summary;
}
β© Reply