Forum Moderators: open

Message Too Old, No Replies

Beginner stylesheet question

         

egibberate

6:59 pm on Jan 16, 2009 (gmt 0)

10+ Year Member



Hi,
just a day or so into this XML stuff so here goes.
I am trying to achieve this layout (without the lines!);

-------------------------------------------------

Harry Potter J.K. Rowling Fantasy

A fabulous rip roaring adventure from
start to finish, couldn't put it down
bla bla bla

-------------------------------------------------


<body>
<div id="div1">
<xsl:for-each select="reviews/book">
<xsl:value-of select="title"/>
<xsl:value-of select="author"/>
<xsl:value-of select="category"/>
</div>
<div id="div2">
<xsl:value-of select="review"/>
</div>
</xsl:for-each>
</mydiv>
</body>

I can't achieve it by doing the above. Can someone please give me some guidance as to how I can have the first three elements appear in one division and the fourth element in a division below, then the pattern repeated for the next book reviews.
Thank you for your help.

egibberate

6:21 pm on Jan 17, 2009 (gmt 0)

10+ Year Member



Hi,
I have solved this problem, thank you to anyone who read the question.

httpwebwitch

8:57 pm on Jan 17, 2009 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



would you post what your solution was? that will be helpful for people who find this thread in the future.

egibberate

8:02 pm on Jan 20, 2009 (gmt 0)

10+ Year Member



Sorry httpwebwitch, how rude of me!
I incorrectly had the division tags outside of the for-each tags.