Is there any way to change the default of tables having no borders in Firefox? I know how to change the HTML of the table to show borders but I wondered if there was a way to give Firefox a set of default table border values.
On 04/03/07, Eur Ing Chris Green cl@isbd.net wrote:
Is there any way to change the default of tables having no borders in Firefox? I know how to change the HTML of the table to show borders but I wondered if there was a way to give Firefox a set of default table border values.
-- Chris Green
I don't know specifically about how to do that, but it sounds like the sort of thing the GreaseMonkey extension was built for, from the little I've read about it (don't use it myself). Worth investigating anyway.
Peter.
On Mon, Mar 05, 2007 at 10:30:20AM +0000, samwise wrote:
On 04/03/07, Eur Ing Chris Green cl@isbd.net wrote:
Is there any way to change the default of tables having no borders in Firefox? I know how to change the HTML of the table to show borders but I wondered if there was a way to give Firefox a set of default table border values.
-- Chris Green
I don't know specifically about how to do that, but it sounds like the sort of thing the GreaseMonkey extension was built for, from the little I've read about it (don't use it myself). Worth investigating anyway.
I'd be more tempted to suggest using firefox's built in user css stuff - though, ISTR that's a pain to get working neatly (I use it on my laptop for a minimum fontsize that's actually readable ;)
Cheers,
On 04/03/07, Eur Ing Chris Green cl@isbd.net wrote:
Is there any way to change the default of tables having no borders in Firefox? I know how to change the HTML of the table to show borders but I wondered if there was a way to give Firefox a set of default table border values.
I /think/ you can set the default style for Firefox in userContent.css - http://kb.mozillazine.org/UserContent.css - though I've never tried it. Something like
table { border-width: 1px }
may do it.
Greg
On Thu, Mar 08, 2007 at 10:12:50PM +0000, Greg Thomas wrote:
On 04/03/07, Eur Ing Chris Green cl@isbd.net wrote:
Is there any way to change the default of tables having no borders in Firefox? I know how to change the HTML of the table to show borders but I wondered if there was a way to give Firefox a set of default table border values.
I /think/ you can set the default style for Firefox in userContent.css
- http://kb.mozillazine.org/UserContent.css - though I've never tried
it. Something like
table { border-width: 1px }
may do it.
A very useful link, thank you.