I have been asked to design a side scrolling site for Wordpress similar to this
site. Each post is positioned side by side on the page.

Im trying to work out if there is a line of PHP that i can add to page.php that will allow a normal vertical scrolling site to horizontal scroll ?? as far as I'm aware there is no jQuery used . . . . .

I've looked for countless amounts of Wordpress themes but can't seem to find the relevant piece of php for horizontal-scrolling. It seems to be quite a common layout for UK based illustrators/graphic designers. Does anyone have any ideas how to achieve this ??

thanks

link|improve this question

27% accept rate
Retagging. This is a HTML / CSS question, not a PHP one. – Pekka Jan 8 '11 at 11:34
possible duplicate of Horizontal Wordpress-Theme How to achieve? – Pekka Jan 8 '11 at 11:36
feedback

3 Answers

Use this theme: http://thethemefoundry.com/shelf/

Otherwise you'll have to digg into CSS for that effect.

link|improve this answer
feedback

Give your body (or for instance a wrapper div) an explicit width, either via CSS (fixed, see below) or JavaScript (dynamic and for instance depending on the number of articles). Then float your articles left and give them an explicit width as well.

<!DOCTYPE html>
<style>
    body { width: 8000px; }
    .article { float: left; width: 800px; }
</style>
<body>
  <div class="article">...</div>
  ... 
  <div class="article">...</div>
</body>
link|improve this answer
feedback

http://css-tricks.com/166-how-to-create-a-horizontally-scrolling-site/

the DEMO...

http://css-tricks.com/examples/HorzScrolling/

Is quite good - although could be more intuitive with anchors & arrows

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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