|
|
|
#1 |
|
Messages: n/a
Hébergeur: |
Both pc's have the same fonts installed. Starting a new page in one choosing
verdana 10pt everything is ok. In the next pc doing the same, it will not. Putting the code in manually in body, it still will not display. I know it is probably a simple explanation but I'm new to Dreamweaver, that is not always a dream... code attached. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> <style type="text/css"> <!-- body,td,th { font-family: Arial, Helvetica, sans-serif; color: #FFFFFF; } body { background-color: #003366; } .style4 { font-family: Geneva, Arial, Helvetica, sans-serif; font-weight: bold; color: #000000; font-size: x-small; } .style7 { font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: medium; font-style: italic; } .style8 {font-family: Arial, Helvetica, sans-serif; font-weight: bold; color: #666666; font-size: 24px; } .style16 {color: #000000} .style17 { color: #FF0000; font-weight: bold; } .style22 {font-size: 9px} .style24 {font-size: 10px} .style25 {color: #000000; font-size: 10px; font-family: Geneva, Arial, Helvetica, sans-serif; } .style28 {color: #FF0000; font-weight: bold; font-style: italic; } .style29 { font-size: xx-small; font-style: italic; } .style32 {font-family: Arial, Helvetica, sans-serif; font-weight: bold; color: #FFFFFF; font-size: 12px; } .style55 { font-size: 10px; font-family: Verdana; color: #000000; } .style58 {font-family: "Times New Roman", Times, serif; font-weight: bold; color: #666666; font-size: 24px; } .style59 { font-size: xx-large; color: #000000; } .style63 {color: #0099CC} --> </style> <script type="text/JavaScript"> <!-- ---------------etc etc and here we go, starting at style 55, stuff that will only show as Arial Bold... ---------------- <tr> <th width="144" height="22" align="center" valign="baseline" scope="col"><span class="style28">Get a Quote Now on your next School Yearbook</span></th> <th width="560" height="45" rowspan="2" align="center" valign="top" scope="col"><h1 align="center" class="style8">YEARBOOK HARDCOVER BOOK PRINTING</h1> <div align="left" class="style55">Yearbook printing does not have to be so expensive. If you or your student staff have a working knowledge of a photo --------- etc etc instead of filling in the blanks of plug-in software. Why not contact us for an estimate on your Yearbook today?! </div></th> <th width="2" height="45" rowspan="2" align="center" valign="top" scope="col"> </th> </tr> |
|
|
|
#2 |
|
Messages: n/a
Hébergeur: |
> verdana 10pt
Points should never be used on a pixel-based display. Use px, em, en, ex, percents, or font size names instead. I can see that you *have*, in fact, used these metrics rather than points. > <tr> > <th width="144" height="22" align="center" valign="baseline" > scope="col"><span class="style28">Get a Quote Now on your next School > Yearbook</span></th> This text will ALWAYS appear bold because it is contained within a <th> tag, rather than a <td> tag. When you inserted the table you neglected the selection option that allows you to specify whether table headers would be used, and if so, where. Dreamweaver can only do what you have told it to, and in this case, you have told it to make that text bold. To change this in any given cell, click in the cell, and look at the Property inspector. Note that there is a checkbox there for "header". If it has a check in it, remove it. > that is not always a dream The more you know about HTML and CSS, the easier this will become. Unfortunately, DW expects you to have a good basis in these skills. -- Murray --- ICQ 71997575 Adobe Community Expert (If you *MUST* email me, don't LAUGH when you do so!) ================== http://www.projectseven.com/go - DW FAQs, Tutorials & Resources http://www.dwfaq.com - DW FAQs, Tutorials & Resources ================== "sgbrix" <webforumsuser@macromedia.com> wrote in message news:fqagdo$jnq$1@forums.macromedia.com... > Both pc's have the same fonts installed. Starting a new page in one > choosing > verdana 10pt everything is ok. In the next pc doing the same, it will not. > Putting the code in manually in body, it still will not display. I know it > is > probably a simple explanation but I'm new to Dreamweaver, that is not > always a > dream... code attached. > > > > > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > <html xmlns="http://www.w3.org/1999/xhtml"> > <head> > <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> > <title>Untitled Document</title> > <style type="text/css"> > <!-- > body,td,th { > font-family: Arial, Helvetica, sans-serif; > color: #FFFFFF; > } > body { > background-color: #003366; > } > .style4 { > font-family: Geneva, Arial, Helvetica, sans-serif; > font-weight: bold; > color: #000000; > font-size: x-small; > } > .style7 { > font-family: Arial, Helvetica, sans-serif; > font-weight: bold; > font-size: medium; > font-style: italic; > } > .style8 {font-family: Arial, Helvetica, sans-serif; font-weight: bold; > color: > #666666; font-size: 24px; } > .style16 {color: #000000} > .style17 { > color: #FF0000; > font-weight: bold; > } > .style22 {font-size: 9px} > .style24 {font-size: 10px} > .style25 {color: #000000; font-size: 10px; font-family: Geneva, Arial, > Helvetica, sans-serif; } > .style28 {color: #FF0000; font-weight: bold; font-style: italic; } > .style29 { > font-size: xx-small; > font-style: italic; > } > .style32 {font-family: Arial, Helvetica, sans-serif; font-weight: bold; > color: > #FFFFFF; font-size: 12px; } > .style55 { > font-size: 10px; > font-family: Verdana; > color: #000000; > } > .style58 {font-family: "Times New Roman", Times, serif; font-weight: bold; > color: #666666; font-size: 24px; } > .style59 { > font-size: xx-large; > color: #000000; > } > .style63 {color: #0099CC} > --> > </style> > <script type="text/JavaScript"> > <!-- > > > ---------------etc etc > > and here we go, starting at style 55, stuff that will only show as Arial > Bold... > ---------------- > > <tr> > <th width="144" height="22" align="center" valign="baseline" > scope="col"><span class="style28">Get a Quote Now on your next School > Yearbook</span></th> > <th width="560" height="45" rowspan="2" align="center" valign="top" > scope="col"><h1 align="center" class="style8">YEARBOOK HARDCOVER BOOK > PRINTING</h1> > <div align="left" class="style55">Yearbook printing does not have to > be > so expensive. If you or your student staff have a working knowledge of a > photo > > --------- etc etc > > instead of filling in the blanks of plug-in software. Why not contact us > for > an estimate on your Yearbook today?! </div></th> > <th width="2" height="45" rowspan="2" align="center" valign="top" > scope="col"> </th> > </tr> > |
|
![]() |
| Outils de la discussion | |
|
|