Michael said:
thanks, but if I wanted to do that then I wouldn't have posted the
question.
I have done this before using CSS but have never used the "styles"
available in FP.
Can I use one hyperlink for several lines of text using the "styles"
in FP and if so, how ?
regards,
Michael,
It sounds like you're talking about two different things. I understand your
initial question as being:
There are several lines of text within a table cell, such as:
<td>
<p>Some text</p>
<p>Some text</p>
<p>Some text</p>
<p>Some text</p>
</td>
and that you'd like them all to be a single hyperlink. You should be able
to do this by wrapping all the p tags within a single a tag like this:
<td>
<a href="your link"><p>Some text</p>
<p>Some text</p>
<p>Some text</p>
<p>Some text</p>
<p>Some text</p></a>
</td>
If you are talking about lines of text in different cells of the table, then
you would need to make each separate line it's own link as you can't wrap a
tags around table cells <td>.
I don't understand why you're asking about styles relative to this since
styles don't dictate the structure of links rather they define how links
(and any other content in your page) should appear. If you can clarify
this, or maybe provide some examples, I'm sure that someone here can more
accurately answer the question.
I hope this helps!