Text color within table to be black

L

Larry

Hi colleagues,

Text color within table to be black

The web site page URL that this situation can be viewed at is:
http://brestlitovsk.topcities.com/Photographs_Briskers.html

I am using a table and the text within the table is all blue. The
table is 6 Rows and 5 Columns.

The coding directly above the table is:
<b><font size="3"><font color="#000000">This is the BINENBAUM Family.
Information supplied by
<a href="mailto:[email protected]"><font color="#004080">Larry
Schenker.</b></font></font></a></font>

I want the text within the table to be all black.

Where can I place the required HTML coding to change all of the text
within the table to black?

Below is the coding for the top two rows of the table.

<table border="1" width="100%">
<tr><!-- Row 1 -->
<td>Given Name</td><!-- Col 1 -->
<td>Relation to Member</td><!-- Col 2 -->
<td>Born</td><!-- Col 3 -->
<td>Died</td><!-- Col 4 -->
<td>Nee Name</td><!-- Col 5 -->
</tr>
<tr><!-- Row 2 -->
<td>Pesse</td><!-- Col 1 -->
<td>Great Grandmother</td><!-- Col 2 -->
<td>May 25, 1852</td><!-- Col 3 -->
<td>May 30, 1932</td><!-- Col 4 -->
<td>Forman</td><!-- Col 5 -->
</tr></table>

Any help would be greatly appreciated.

In addition to posting to this group, could you please cc me at
(e-mail address removed)

Thanks in advance!

Larry Schenker
 
M

Mark Parnell


Why? Is it tabular data?
http://www.allmyfaqs.com/faq.pl?Tableless_layouts
The coding directly above the table is:
<b><font size="3"><font color="#000000">This is the BINENBAUM Family.
Information supplied by
<a href="mailto:[email protected]"><font color="#004080">Larry
Schenker.</b></font></font></a></font>

Let me guess. You're using Frontpage. I don't think even Dreamweaver
I want the text within the table to be all black.

table {color: black;}
In addition to posting to this group, could you please cc me at
(e-mail address removed)

Sorry, this is Usenet. Post here, answered here.
 
L

Larry

Mark Parnell said:
Why? Is it tabular data?
http://www.allmyfaqs.com/faq.pl?Tableless_layouts


Let me guess. You're using Frontpage. I don't think even Dreamweaver


table {color: black;}


Sorry, this is Usenet. Post here, answered here.

Mark Parnell

Thanks for your suggestion. I am sorry that I do not know CSS, I do
not even know what it is. I am just a volunteer who is attempting to
put together a web site.

I attempted to change the orginal HTML code which is:
<table border="1" width="100%">

in two different ways
<table border="1" color="black" width="100%">
<table border="1" color="00000" width="100%">

Neither changes the text copy within the table to black.

Can you please try to help me again.

Thank you again

Larry Schenker
 
M

Mark Parnell

I am sorry that I do not know CSS, I do
not even know what it is.

Cascading Style Sheets. The idea is that HTML describes the structure of
the document, CSS handles the presentation.

Once you learn about CSS, you'll never go back.
<table border="1" color="black" width="100%">
<table border="1" color="00000" width="100%">

Neither changes the text copy within the table to black.

Really? You can't just make up attributes and have them do what you
want? said:
Can you please try to help me again.

Create a new file called style.css and save it to the same directory as
your HTML file.

In that file type:

table { color: black; }

At the top of your HTML document, add the following line:

<link rel="stylesheet" href="style.css" media="all">

Then have a look at these:

css tutorials and other fun 'n giggly css stuff:
http://www.css.nu/
http://www.mako4css.com/
http://www.richinstyle.com/
http://www.blazonry.com/css/
http://www.w3schools.com/css/
http://www.websitetips.com/css/
http://www.htmlhelp.com/reference/css/
http://www.pageresource.com/dhtml/indexcss.htm
http://www.climbtothestars.org/coding/cssbasic/
http://www.htmlcenter.com/tutorials/index.cfm/css/
http://www.freewebmastertips.com/php/content.php3?aid=48
http://www.canit.se/~griffon/web/writing_stylesheets.html
http://www.utoronto.ca/ian/books/xhtml2/exerpt/css-4a.html
http://idm.internet.com/articles/200101/csstutorial1a.html
http://www.greytower.net/en/archive/articles/tsutsumi.html
http://www.westciv.com.au/style_master/academy/css_tutorial/
http://webmonkey.com/authoring/stylesheets/tutorials/tutorial1.html

layout examples:
http://www.glish.com/css/
http://www.csszengarden.com/
http://www.wannabegirl.org/css/
http://tantek.com/CSS/Examples/
http://www.saila.com/usage/layouts/
http://www.bluerobot.com/web/layouts/
http://www.benmeadowcroft.com/webdev/
http://www.xs4all.nl/~apple77/columns/
http://www.meyerweb.com/eric/css/edge/
http://www.htmler.org/tutorials/3/1.html
http://css.nu/articles/floating-boxes.html
http://webhost.bridgew.edu/etribou/layouts/
http://www.roguelibrarian.com/lj/index.html
http://css-discuss.incutio.com/?page=CssLayouts
http://ecoculture.com/styleguide/r/rollovers.html
http://thenoodleincident.com/tutorials/box_lesson/index.html
http://www.webreference.com/authoring/style/sheets/layout/advanced/

rounded corners:
http://www.albin.net/CSS/roundedCorners/
http://www.webweaver.org/dan/css/corners/
http://www.guyfisher.com/builder/workshop/css/corners/

slants: http://www.infimum.dk/HTML/slantinfo.html
centring: http://stone.thecoreworlds.net/www/centre/
lists: http://www.alistapart.com/stories/taminglists/
pure css menus: http://www.meyerweb.com/eric/css/edge/menus/demo.html

master compatibility charts:
http://www.xs4all.nl/~ppk/css2tests/intro.html
http://www.blooberry.com/indexdot/css/index.html
http://macedition.com/cb/resources/abridgedcsssupport.html
old:
http://www.immix.net/html/CSSGuide.htm
http://devedge.netscape.com/library/xref/2003/css-support/

hiding CSS from crappy browsers:
http://centricle.com/ref/css/filters/
http://www.ericmeyeroncss.com/bonus/trick-hide.html
http://www.w3development.de/css/hide_css_from_browsers/

css checkers:
http://jigsaw.w3.org/css-validator/
http://www.htmlhelp.com/tools/csscheck/

cascading style sheets, level 1 specification
http://www.w3.org/TR/REC-CSS1.html
cascading style sheets, level 2 specification
http://www.w3.org/tr/rec-css2/cover.html
cascading style sheets, level 2 revision 1 working draft
http://www.w3.org/TR/2002/WD-CSS21-20020802/

(thanks brucie)
 
S

SpaceGirl

Larry wrote:

Mark Parnell

Thanks for your suggestion. I am sorry that I do not know CSS, I do
not even know what it is. I am just a volunteer who is attempting to
put together a web site.

I dont want to sound overly rude, but this kind of begs the question
"why did you volunteer", seeing as you dont know the basics of the
technology you're working with? :/

To offer an alternate solution to Marks greta post;

<style type="text/css">

table {color:black;}

</style>

.... between said:
Thank you again

Larry Schenker


--


x theSpaceGirl (miranda)

# lead designer @ http://www.dhnewmedia.com #
# remove NO SPAM to email, or use form on website #
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,007
Latest member
obedient dusk

Latest Threads

Top