Excellent Magazine Style Blogger Template "Falkner Press"

Phantomki11

Posts: 2

Joined: Fri Jul 10, 2009 6:19 am

New to the Forum

Post Sat Jul 11, 2009 6:35 pm

Re: Excellent Magazine Style Blogger Template "Falkner Press"

Kranthi wrote:
Phantomki11 wrote:Yeah I would like a header that says Stealing Society. Thanks


Image


thank you

Re: Excellent Magazine Style Blogger Template "Falkner Press"


exodia blade

Posts: 2

Joined: Sun Jul 12, 2009 7:28 pm

New to the Forum

Post Sun Jul 12, 2009 7:32 pm

Re: Excellent Magazine Style Blogger Template "Falkner Press"

Hey firstly I just want to say thanks for a brilliant template.

Could I please have a logo that says "exodia blade" and also one that says "xbox 360"

Thanks for all your help =)

Laidback

Posts: 11

Joined: Wed Jul 08, 2009 8:41 am

New to the Forum

Post Sun Jul 12, 2009 10:26 pm

Re: Excellent Magazine Style Blogger Template "Falkner Press"

Castle wrote:So, I simply can't understand this slideshow function in this template. I tried linking my images from three sites and all worked for a day or two then back to all images static and rolling down the page. I am sure my .txt files are set properly. Does anyone know what this is all about or should I just give up? Is this a blogger.com issue? Is it a template code problem? I am using 4 images each about 30k so I know I'm not killing any bandwidth limitations.



Can someone please help castle resolve this issue?

Thanks for all the help castle.

kkkashish

Posts: 1

Joined: Thu Jul 09, 2009 9:24 am

New to the Forum

Post Tue Jul 14, 2009 1:36 pm

Re: Excellent Magazine Style Blogger Template "Falkner Press"

My Blog Name is Techo Universe..... Pls PostSoon, Urgent


Kashish

drewski1k

User avatar

Posts: 1

Joined: Tue Jul 14, 2009 9:31 pm

New to the Forum

Post Tue Jul 14, 2009 9:37 pm

Re: Excellent Magazine Style Blogger Template "Falkner Press"

Kranthi wrote:
taugeh wrote:hi.. i am creating blog for my uni project.. i wanna ask u that for the mini updates.. when i change the blog url to my blog, i donnu why all those things at down there will run away.. can u pls help me? 10x~


Can you paste the code here ( the changed one).. I'll check it out.




Kranthi -

I am having the same problem....I made sure to just replace the Falknerpress url with mine, I changed the images (tried not doing this as well), and changed the script location (tried not doing this as well)...nothing is working...... Please help

my code------
<b:section class='HTL' id='sidecat-wrap' maxwidgets='1' preferred='yes' showaddelement='yes'>
<b:widget id='HTML3' locked='false' title='Mini Updates' type='HTML'>
<b:includable id='main'>
<!-- only display title if it's non-empty -->

<div class='sidecat-heading'>
<h2><data:title/></h2>
</div>
<div id='sidecat'>
<script language='JavaScript'>

imgr = new Array();


imgr[0] = &quot;http://i842.photobucket.com/albums/zz343/drewski1k/orpg0m.jpg&quot;;

imgr[1] = &quot;http://i842.photobucket.com/albums/zz343/drewski1k/orpg0m.jpg&quot;;

imgr[2] = &quot;http://i842.photobucket.com/albums/zz343/drewski1k/orpg0m.jpg&quot;;

imgr[3] = &quot;http://i842.photobucket.com/albums/zz343/drewski1k/orpg0m.jpg&quot;;

imgr[4] = &quot;http://i842.photobucket.com/albums/zz343/drewski1k/orpg0m.jpg&quot;;
showRandomImg = true;

boxwidth = 255;

cellspacing = 6;

borderColor = &quot;#232c35&quot;;

bgTD = &quot;#000000&quot;;

thumbwidth = 40;

thumbheight = 40;

fntsize = 10;

acolor = &quot;#666&quot;;

aBold = true;

icon = &quot; &quot;;

text = &quot;comments&quot;;

showPostDate = false;

summaryPost = 40;

summaryFontsize = 12;

summaryColor = &quot;#666&quot;;

icon2 = &quot; &quot;;

numposts = 4;

home_page = &quot;http://itsandysblog.blogspot.com/&quot;;

</script>

<script src='http://sites.google.com/site/firstblogsite/recentposts_thumbnail.txt' type='text/javascript'/>
</div>

</b:includable>
</b:widget>
</b:section>

Switcher

User avatar

Posts: 305

Joined: Sat May 09, 2009 3:19 pm

Knows what he is doing ;)Knows what he is doing ;)Knows what he is doing ;)Knows what he is doing ;)Knows what he is doing ;)Knows what he is doing ;)

Post Tue Jul 14, 2009 11:52 pm

Re: Excellent Magazine Style Blogger Template "Falkner Press"

drewski1k,

I think I see what the issue is with your template.

The file you have hosted on Google Sites is a single line, that won't work.

The txt/javascript file needs to be like this.

  Code:
function removeHtmlTag(strx,chop){
   var s = strx.split("<");
   for(var i=0;i<s.length;i++){
      if(s[i].indexOf(">")!=-1){
         s[i] = s[i].substring(s[i].indexOf(">")+1,s[i].length);
      }
   }
   s =  s.join("");
   s = s.substring(0,chop-1);
   return s;
}

function showrecentposts(json) {
   document.write('<table width="'+tablewidth+'" border=0 bordercolor="#FF0000" cellspacing="'+cellspacing+'" bgcolor="'+borderColor+'" align="center">');
   j = (showRandomImg) ? Math.floor((imgr.length+1)*Math.random()) : 0;
   img  = new Array();

     for (var i = 0; i < numposts; i++) {
       var entry = json.feed.entry[i];
       var posttitle = entry.title.$t;
      var pcm;
       var posturl;
       if (i == json.feed.entry.length) break;
       for (var k = 0; k < entry.link.length; k++) {
            if (entry.link[k].rel == 'alternate') {
              posturl = entry.link[k].href;
              break;
            }
       }
      
      for (var k = 0; k < entry.link.length; k++) {
            if (entry.link[k].rel == 'replies' && entry.link[k].type == 'text/html') {
              pcm = entry.link[k].title.split(" ")[0];
              break;
            }
       }
      
       if ("content" in entry) {
            var postcontent = entry.content.$t;}
       else
       if ("summary" in entry) {
            var postcontent = entry.summary.$t;}
       else var postcontent = "";
       
       postdate = entry.published.$t;
   
   if(j>imgr.length-1) j=0;
   img[i] = imgr[j];
   
   s = postcontent   ; a = s.indexOf("<img"); b = s.indexOf("src=\"",a); c = s.indexOf("\"",b+5); d = s.substr(b+5,c-b-5);

   if((a!=-1)&&(b!=-1)&&(c!=-1)&&(d!="")) img[i] = d;

   cmtext = (text != 'no') ? '<i><font color="'+acolor+'">('+pcm+' '+text+')</font></i>' : '';


   var month = [1,2,3,4,5,6,7,8,9,10,11,12];
   var month2 = ["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];

   var day = postdate.split("-")[2].substring(0,2);
   var m = postdate.split("-")[1];
   var y = postdate.split("-")[0];

   for(var u2=0;u2<month.length;u2++){
      if(parseInt(m)==month[u2]) {
         m = month2[u2] ; break;
      }
   }

   var daystr = (showPostDate) ? '<i><font color="'+acolor+'"> - ('+day+ ' ' + m + ' ' + y + ')</font></i>' : "";

posttitle = (aBold) ? "<b>"+posttitle+"</b>" : posttitle;

   var trtd = '<tr><td valign="top" width="'+imgwidth+'" height="'+imgheight+'" style="background:'+bgTD+'"><a href="'+posturl+'"><img src="'+img[i]+'" width="'+imgwidth+'" height="'+imgheight+'"/></a></td><td style="background:'+bgTD+'" valign="top">'+icon+'<a href="'+posturl+'" style="color:'+acolor+'; font-size:'+fntsize+'px;">'+posttitle+'</a><br /> '+cmtext+ ' ' + daystr + '<div style="color:'+summaryColor+'; margin-top:2px; border-top:1px '+borderColor+' solid; font-size:'+summaryFontsize+'px;">'+icon2+removeHtmlTag(postcontent,summaryPost)+'...</div></td></tr>';

   if(summaryPost == 0) { trtd = '<tr><td valign="top" width="'+imgwidth+'" height="'+imgheight+'" style="background:'+bgTD+'"><a href="'+posturl+'"><img src="'+img[i]+'" width="'+imgwidth+'" height="'+imgheight+'"/></a></td><td style="background:'+bgTD+'" valign="top">'+icon+'<a href="'+posturl+'" style="color:'+acolor+'; font-size:'+fntsize+'px;">'+posttitle+'</a><br /> '+cmtext+ ' ' + daystr + '</td></tr>'; }

   document.write(trtd);

   j++;
}

document.write('</table>');
}
document.write("<script src=\""+home_page+"feeds/posts/default?max-results="+numposts+"&orderby=published&alt=json-in-script&callback=showrecentposts\"><\/script>");

exodia blade

Posts: 2

Joined: Sun Jul 12, 2009 7:28 pm

New to the Forum

Post Wed Jul 15, 2009 1:10 pm

Re: Excellent Magazine Style Blogger Template "Falkner Press"

thembelex wrote:why my blog look like this? explanation please...:(

Image

Image


I'm having the same problem, it looked fine last night but then this morning it looked like this, anybody know why????

yamoney

Posts: 1

Joined: Wed Jul 15, 2009 2:44 pm

New to the Forum

Post Wed Jul 15, 2009 2:51 pm

Re: Excellent Magazine Style Blogger Template "Falkner Press"

I love the new magazine template... do you make custom blog designs, cattered to specific people, Cause I am in need of a crazy Hip hop layout... which includes links to Facebook, Twitter, and myspace... my current blog is http://www.signaturerocksoul.blogspot.com ... email me Yazid.Britt@gmail.com

abufarhan

User avatar

Posts: 41

Joined: Thu Jul 16, 2009 7:04 am

Knows what he is doing ;)Knows what he is doing ;)Knows what he is doing ;)Knows what he is doing ;)

Post Thu Jul 16, 2009 8:04 am

Re: Excellent Magazine Style Blogger Template "Falkner Press"

I checked http://falknerpress.blogspot.com/ javascript can't work. and I checked to google site have this messege "Pageview limit exceeded" so its better change javascript file( http://www.abu-farhan.com/2009/06/solus ... e-storage/ ) or use inside of template
The Problem Above because of this file
<script src='http://sites.google.com/site/bloggertricksjs/Home/mootools.v1.11.txt' type='text/javascript'/>
<script src='http://sites.google.com/site/bloggertricksjs/Home/jd.gallery.txt' type='text/javascript'/>
<script src='http://sites.google.com/site/bloggertricksjs/Home/tabber.txt' type='text/javascript'/>
<SCRIPT src='http://sites.google.com/site/bloggertricksjs/Home/autoreadmorethumb.txt' type='text/javascript'/>
All file in same position of Google site
so its better download the file and use your own free file hosting, you can choose from this recomendations
http://www.abu-farhan.com/2009/06/solus ... le-storage

Because the file now can't acces you can download from original source
http://mootools.net/
http://smoothgallery.jondesign.net/download/
http://www.barelyfitz.com/projects/tabber/ (CMIIW)
http://myblogtalk.com/bloggertemplates/ ... rethumb.js

Kranthi

User avatar

Site Admin

Posts: 195

Joined: Wed May 06, 2009 7:11 pm

Blogging MasterBlogging MasterBlogging MasterBlogging MasterBlogging MasterBlogging MasterBlogging Master

Post Thu Jul 16, 2009 8:35 am

Re: Excellent Magazine Style Blogger Template "Falkner Press"

Hi abufarhan,

The files are already included in the template download file.. Check it.
PreviousNext


Related Topics


Return to Blogger Templates

Home | Privacy Policy | Contact us | Blogger Templates |
© 2009-10 Blogger Forum. All rights reserved.