Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For my blog index, I use small-ish images (250px wide).
If I view a single post, I'd like it to be bigger (e.g. 500px wide).

Is this possible? I can only see one block that applies to all posts.
I guess I'm looking for the WordPress-equivalent of single.php.

Thanks!

share|improve this question

1 Answer

up vote 2 down vote accepted

There's two tumblr tags that you might find useful:

{block:Posts}{/block:Posts}

and

{block:PermalinkPage} {/block:PermalinkPage}

The first set is the regular way of displaying your posts, where as the second set of tags targets "single" pages only. What I would do, if I was looking to change views between the index page and the single page, I'd wrap one set inside another, like this:

{block:Posts}
//Normal posts as displayed on the home page
{/block:Posts}

{block:PermalinkPage}
 {block:Posts}
  //Targets posts when displayed in "single" view...
 {/block:Posts}
{/block:PermalinkPage}

Hope this helps & works :)

share|improve this answer
Thanks dude, perfect! – thv20 Mar 16 '11 at 14:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.