[WSG] Breaks within table cells

2011-11-23 Thread Grant Bailey
Hello, I would be grateful if someone could help with this, as I'm not a tables expert. I want to separate two separate entries in the one cell, to indicate alterntatives. Like this (see picture): The coding for this part of the table looks

Re: [WSG] Breaks within table cells

2011-11-23 Thread Telford Computer Doctor
Someone will be able to clarify, but I would go down the route of padding-left... td.Table_Text {padding-left: 15px; text-align: left;} Mike Flanagan CCO Telford Computer Doctor http://www.telfordpc.co.uk

Re: [WSG] Breaks within table cells

2011-11-23 Thread Phil Archer
So you're just trying to create a blank line between Client / solicitor and Client / accountant ? Two ways to do that I'd say: use two br / elements (i.e. Client / solicitorbr /br /Client / accountant or two paragraphs: pClient / solicitor/p pClient / accountant/p The latter creates two

Re: [WSG] Breaks within table cells

2011-11-23 Thread Russ Weakley
Option 1: Try making the two chunks of content into two individual paragraphs within the one cell. It is not the most ideal semantics, though it could be argued that they are two short paragraphs :) Depending on how the margins have been defined for your paragraphs, this should give you 1em

Re: [WSG] Breaks within table cells

2011-11-23 Thread Chad Kelly
On 11/23/2011 10:53 PM, Russ Weakley wrote: Option 1: Try making the two chunks of content into two individual paragraphs within the one cell. It is not the most ideal semantics, though it could be argued that they are two short paragraphs :) Depending on how the margins have been defined

Re: [WSG] Breaks within table cells

2011-11-23 Thread Russ Weakley
Why not use a list within the table as it is a list of items. There you go! Option 3 :) *** List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm Help:

Re: [WSG] Breaks within table cells

2011-11-23 Thread Grant Bailey
A brilliant suggestion that worked perfectly. Thank you very much Chad! Kind regards, Grant Bailey On 24/11/2011 12:13 AM, Russ Weakley wrote: Why not use a list within the table as it is a list of items. There you go! Option 3 :)

[WSG] Not near the computer... Re: WSG Digest

2011-11-23 Thread Pat Ramsey
I'm away for family business. If I get a chance, I'll reply to your email. Most likely, though, it's gonna have to wait till I'm back. Pat -- Pat Ramsey Code that works,... Beautifully slash25.com @pat_ramsey 512.736.6227 ***

Re: [WSG] Using ellipsis to indicate truncated overflow content

2011-11-23 Thread Oliver Boermans
You could possibly use JavaScript to implement it in browsers that don’t support it. I’ve seen a few jQuery plugins written for the purpose. For example: http://dotdotdot.frebsite.nl/ I’ve not used it myself. HTH Ollie On 23/11/2011, at 4:13 PM, Ben Buchanan w...@200ok.com.au wrote:

Re: [WSG] Breaks within table cells

2011-11-23 Thread Chad Kelly
On 11/24/2011 1:29 AM, Grant Bailey wrote: A brilliant suggestion that worked perfectly. Thank you very much Chad! Kind regards, Grant Bailey Not a problem Grant. Regards Chad. *** List Guidelines: