severndigital Posted April 16, 2009 Share Posted April 16, 2009 I have an XML file that comes to me like this... <book id="bk101"> <author>Gambardella, Matthew</author> <bktitle>XML Developer's Guide</bktitle> <genre>Computer</genre> <price>44.95</price> <publish_date>2000-10-01</publish_date> <description>An in-depth look at creating applications with XML.</description> </book> I would like to position the book title first and the author underneath it. is it possible to do so, without having the xml regenerated? Thanks, Quote Link to comment Share on other sites More sharing options...
FaT3oYCG Posted April 16, 2009 Share Posted April 16, 2009 dont think you can, its more likeley that you will have to change the xml which isnt hard so id look into that instead of something complicated or a bodge job in css Quote Link to comment Share on other sites More sharing options...
xtopolis Posted April 17, 2009 Share Posted April 17, 2009 Depends on what you're talking about. If you're having anything parse it, or using XSLT to show it, you should be able to manipulate it anyway you want without having to touch the file. Please be more specific with what you're positioning and where. Quote Link to comment Share on other sites More sharing options...
haku Posted April 17, 2009 Share Posted April 17, 2009 XSLT is what you want. It allows for the manipulation of XML files. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.