PC Review


Reply
Thread Tools Rate Thread

can I put text left or right of table

 
 
DianaH
Guest
Posts: n/a
 
      13th Dec 2004
I want to give a table a special border with spacing and I can't seem to
achieve the look I want with just one cell ... it seems that I have to apply
the same properties to all the cells for what I want.

Having said that, to overcome the above, I thought I'd put a single table
cell on the right and put text on the left, but I can't seem to get it to
work. Perhaps it's not an option to wrap text to the left or right of a
table.

Can someone confirm this please and thanks. Diana


 
Reply With Quote
 
 
 
 
Thomas A. Rowe
Guest
Posts: n/a
 
      13th Dec 2004
Under Table Properties, select the Float, then choose Left or Right.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)
http://www.ycoln-resources.com
FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
To assist you in getting the best answers for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp

"DianaH" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
>I want to give a table a special border with spacing and I can't seem to
> achieve the look I want with just one cell ... it seems that I have to apply
> the same properties to all the cells for what I want.
>
> Having said that, to overcome the above, I thought I'd put a single table
> cell on the right and put text on the left, but I can't seem to get it to
> work. Perhaps it's not an option to wrap text to the left or right of a
> table.
>
> Can someone confirm this please and thanks. Diana
>
>



 
Reply With Quote
 
=?Utf-8?B?QXJhdmludGg=?=
Guest
Posts: n/a
 
      13th Dec 2004
If this is what you expected ...

Text on the left and a special cell with formatting on the right try this code

<table border="0" width="50%" cellspacing="1">
<tr>
<td width="25%">Text here</td>
<td style="border: 1px solid #003D80; padding: 5px" width="25%"
bgcolor="#E1F2FF">Special Cell</td>
</tr>
</table>

A table split to two cells left one with text and right one with formatting.


"DianaH" wrote:

> I want to give a table a special border with spacing and I can't seem to
> achieve the look I want with just one cell ... it seems that I have to apply
> the same properties to all the cells for what I want.
>
> Having said that, to overcome the above, I thought I'd put a single table
> cell on the right and put text on the left, but I can't seem to get it to
> work. Perhaps it's not an option to wrap text to the left or right of a
> table.
>
> Can someone confirm this please and thanks. Diana
>
>
>

 
Reply With Quote
 
=?Utf-8?B?Q293dG9vbg==?=
Guest
Posts: n/a
 
      13th Dec 2004
Thomas,
I tried that and it would place the text beside the table, it would only put
the text above or below. hmmmmmm

"Thomas A. Rowe" wrote:

> Under Table Properties, select the Float, then choose Left or Right.
>
> --
> ==============================================
> Thomas A. Rowe (Microsoft MVP - FrontPage)
> WEBMASTER Resources(tm)
> http://www.ycoln-resources.com
> FrontPage Resources, WebCircle, MS KB Quick Links, etc.
> ==============================================
> To assist you in getting the best answers for FrontPage support see:
> http://www.net-sites.com/sitebuilder/newsgroups.asp
>
> "DianaH" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
> >I want to give a table a special border with spacing and I can't seem to
> > achieve the look I want with just one cell ... it seems that I have to apply
> > the same properties to all the cells for what I want.
> >
> > Having said that, to overcome the above, I thought I'd put a single table
> > cell on the right and put text on the left, but I can't seem to get it to
> > work. Perhaps it's not an option to wrap text to the left or right of a
> > table.
> >
> > Can someone confirm this please and thanks. Diana
> >
> >

>
>
>

 
Reply With Quote
 
Stefan B Rusynko
Guest
Posts: n/a
 
      13th Dec 2004
You need another html block element to the left / right of the floated table (like another table)

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________


"Cowtoon" <(E-Mail Removed)> wrote in message news:4FE7EE6F-4001-469D-B9FD-(E-Mail Removed)...
| Thomas,
| I tried that and it would place the text beside the table, it would only put
| the text above or below. hmmmmmm
|
| "Thomas A. Rowe" wrote:
|
| > Under Table Properties, select the Float, then choose Left or Right.
| >
| > --
| > ==============================================
| > Thomas A. Rowe (Microsoft MVP - FrontPage)
| > WEBMASTER Resources(tm)
| > http://www.ycoln-resources.com
| > FrontPage Resources, WebCircle, MS KB Quick Links, etc.
| > ==============================================
| > To assist you in getting the best answers for FrontPage support see:
| > http://www.net-sites.com/sitebuilder/newsgroups.asp
| >
| > "DianaH" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
| > >I want to give a table a special border with spacing and I can't seem to
| > > achieve the look I want with just one cell ... it seems that I have to apply
| > > the same properties to all the cells for what I want.
| > >
| > > Having said that, to overcome the above, I thought I'd put a single table
| > > cell on the right and put text on the left, but I can't seem to get it to
| > > work. Perhaps it's not an option to wrap text to the left or right of a
| > > table.
| > >
| > > Can someone confirm this please and thanks. Diana
| > >
| > >
| >
| >
| >


 
Reply With Quote
 
=?Utf-8?B?Q293dG9vbg==?=
Guest
Posts: n/a
 
      22nd Dec 2004
Avarinth ... I'd like to look into what you posted. I don't recall ever
seeing "special cell" formatting in FrontPage, but then ... I wouldn't have
thought to look for that. Perhaps it's html code that Frontpage can accept
but doesn't generate.
Thanks for the response.
Diana

"Aravinth" wrote:

> If this is what you expected ...
>
> Text on the left and a special cell with formatting on the right try this code
>
> <table border="0" width="50%" cellspacing="1">
> <tr>
> <td width="25%">Text here</td>
> <td style="border: 1px solid #003D80; padding: 5px" width="25%"
> bgcolor="#E1F2FF">Special Cell</td>
> </tr>
> </table>
>
> A table split to two cells left one with text and right one with formatting.
>
>
> "DianaH" wrote:
>
> > I want to give a table a special border with spacing and I can't seem to
> > achieve the look I want with just one cell ... it seems that I have to apply
> > the same properties to all the cells for what I want.
> >
> > Having said that, to overcome the above, I thought I'd put a single table
> > cell on the right and put text on the left, but I can't seem to get it to
> > work. Perhaps it's not an option to wrap text to the left or right of a
> > table.
> >
> > Can someone confirm this please and thanks. Diana
> >
> >
> >

 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      22nd Dec 2004
He is using that term generically to describe the fact that only that cell
will receive the special formatting specified in the inline styles.

Just try his code and you'll see.

--
Murray

"Cowtoon" <(E-Mail Removed)> wrote in message
news:B4BBE454-DAFE-4783-A381-(E-Mail Removed)...
> Avarinth ... I'd like to look into what you posted. I don't recall ever
> seeing "special cell" formatting in FrontPage, but then ... I wouldn't
> have
> thought to look for that. Perhaps it's html code that Frontpage can
> accept
> but doesn't generate.
> Thanks for the response.
> Diana
>
> "Aravinth" wrote:
>
>> If this is what you expected ...
>>
>> Text on the left and a special cell with formatting on the right try this
>> code
>>
>> <table border="0" width="50%" cellspacing="1">
>> <tr>
>> <td width="25%">Text here</td>
>> <td style="border: 1px solid #003D80; padding: 5px" width="25%"
>> bgcolor="#E1F2FF">Special Cell</td>
>> </tr>
>> </table>
>>
>> A table split to two cells left one with text and right one with
>> formatting.
>>
>>
>> "DianaH" wrote:
>>
>> > I want to give a table a special border with spacing and I can't seem
>> > to
>> > achieve the look I want with just one cell ... it seems that I have to
>> > apply
>> > the same properties to all the cells for what I want.
>> >
>> > Having said that, to overcome the above, I thought I'd put a single
>> > table
>> > cell on the right and put text on the left, but I can't seem to get it
>> > to
>> > work. Perhaps it's not an option to wrap text to the left or right of
>> > a
>> > table.
>> >
>> > Can someone confirm this please and thanks. Diana
>> >
>> >
>> >



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Left Join is excluding data from left table =?Utf-8?B?VG9tIFRlbGZvcmQ=?= Microsoft Access Queries 8 21st Mar 2007 05:26 PM
left join returns MORE rows than the left table dkiernan@kccomputersales.com Microsoft Access Queries 3 10th Nov 2006 04:37 AM
Right to Left text entry should enter the text Right to Left =?Utf-8?B?TWF0dCBTbWl0aA==?= Microsoft Word Document Management 2 21st Sep 2006 08:56 PM
How do I insert a symbol to left of left margin so text lines up? =?Utf-8?B?Y2phY2tzb24=?= Microsoft Word Document Management 5 13th Mar 2006 10:36 PM
Left Shared border and table in body part --> table shiftet to left at resize... José Joye Microsoft Frontpage 3 17th Jun 2004 12:15 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:11 PM.