HighDots Forums  

Need help on display dynamic data horizonally

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss Need help on display dynamic data horizonally in the Macromedia Dreamweaver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
tku62
 
Posts: n/a

Default Need help on display dynamic data horizonally - 09-07-2006 , 10:40 PM






Could anyone help me out please...
I am using Dreamweaver 8, i have a recordset which contains image_path(text)
and title(text) field, and i am trying to make a dynamic page that will display
the image and the title of the image right below for each data horizontally.
First, i drag the image_path from binding into the image holder and drag title
right below the image, then I highlight both image_path and title and do the
repeat region, and since there is </BR> between the image and the title, my
dynamic data will display vertically instead of horizontally, please tell me
how i can fix that. I want to display the data horizontally, thank you very
much.

Ming


Reply With Quote
  #2  
Old   
SugnaShane
 
Posts: n/a

Default Re: Need help on display dynamic data horizonally - 09-08-2006 , 09:17 AM






Without seeing the code it is hard to see if something is missing however.

The dynamic data has nothing to do with the way it is laid out using HTML.

You could through the data result into a table row or in a Div, LI styling it
with CSS.

For example:

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>Result</td>
<td>Result</td>
</tr>
</table>

or

<div id="result">
[BULLET]
[LI]Result></li>
[LI]Result2></li>
[/BULLET]

CSS
#result li{
display:inline;

}
</div>

Shane


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.