Learn CSS! You basically want something along the lines of this blog of mine: http://stijlstek.nl/ which is powered by WP.
Thread Starter
Zac
(@zac)
yea.. im trying.. and that looks nothing like what i want
Thread Starter
Zac
(@zac)
That is a cool layout..but.. no . I actually want it to be a fixed height and you scroll sideways to see the posts. I actually can not find anything that looks like what i envision.
Enclose all (post title, date, content, etc) into one container, say, .post. And then for CSS
.post {
float: left;
width: 300px;
}
Say you set 5 post for front page then you’ll have five-column content goes sideways (one column for one post).
To fix the height, you need to fix the length of post. You could just display the excerpt of length, say, 200 words. You’d get that by having
<?php the_excerpt_rss(200); ?>
inside the loop
Thread Starter
Zac
(@zac)
Thanks for the advice! I will give it a try.. I follow you until this part:
<?php the_excerpt_rss(200); ?>
but i am not sure that is relevant since i will be posting photos for the most part
hopefully my puny brain can make sense of some of this
Thanks again for helping!
If you always have one and only one image per post, then my excerpt is indeed not relevant.
Thread Starter
Zac
(@zac)
Thanks a lot.. I am much closer (but have a long ways to go):
http://www.folkphotography.com/wp/
Now changing the screen res from 1024 to 800 or shrinking your browser window screws it up and you are forced to scroll vertically.
Should i make the rap a fixed height?
i made the header a couple thousand pix to force the horizontal scrollbar.. that probably needs to be changed..
Make the rap fixed-width, no?
Thread Starter
Zac
(@zac)
Yes… I did do that .. right now height: 700px width 2000px … there is still the problem with screen resolution affecting the layout
You didn’t explain very well what you wanted, at least I misunderstood you. If you want something that scrolls horizontally, have a look at http://www.csszengarden.com/?cssfile=/037/037.css&page=0