Applying a CSS style to an existing web page

Hi all.
I have recently updated the look of one of my web pages in my site. I'm looking to update the look of the other pages in my site as well to the same style/look. I have a CSS style saved as  "main layout" that I would like to use to apply the same look my existing pages. I'm working in Dreamweaver CS4. Does anyone know how to go about doing this? I realize that, because the existing page already has a layout applied to it, that the look may not be exactly the same, and that's fine, I can work with it from there if I can get it to that point. I feel like there should be an obvious answer to this, but i can't find one.
Any help is greatly appreciated.
Thanks.

This is one of my old pages.
<!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=utf-8" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>Home Page</title>
<!-- TemplateEndEditable -->
<style type="text/css">
<!--
body  {
font: 100% Verdana, Arial, Helvetica, sans-serif;
background: 000000;
margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
padding: 0;
text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
color: #FFFFFF;
background-color: #000000 ;
border: 10 px;
background-image: url(<img src="Graphics/blackbg.jpg" width="1024" height="658" />);
.twoColFixLtHdr #container {
width: 80%;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
background: #000000;
margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
border: 25px solid #000000; /* this overrides the text-align: center on the body element. */
.twoColFixLtHdr #header {
background: #000000;
padding: 0 0px 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
border: 1px solid #000000
.twoColFixLtHdr #header h1 {
margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
padding: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
.twoColFixLtHdr #sidebar1 {
float: left; /* since this element is floated, a width must be given */
width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
height: 825px;
background: #000000 ; /* the background color will be displayed for the length of the content in the column, but no further */
padding: 15px 10px 15px 20px;
border: 15px solid #111111;;
.twoColFixLtHdr #mainContent {
margin: 0 0 0 25px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
.twoColFixLtHdr #footer {
padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
background:#DDDDDD;
color: #000;
font-size: small;
text-align: center;
font-weight: bold;
.twoColFixLtHdr #footer p {
margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
float: right;
margin-left: 8px;
.fltlft { /* this class can be used to float an element left in your page */
float: left;
margin-right: 8px;
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
body,td,th {
font-family: Tahoma, Geneva, sans-serif;
color: #FFF;
text-align: center;
a:link {
color: #D1FFF0;
a:visited {
color: #903;
text-align: center;
.twoColFixLtHdr #container p {
color: #CCC;
font-size: x-large;
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
text-align: center;
font-weight: bold;
.twoColFixLtHdr #container #sidebar1 table tr td h2 strong em {
color: #fdf5e6;
font-size: x-large;
font-family: Tahoma, Geneva, sans-serif;
text-align: left;
.twoColFixLtHdr #container #sidebar1 table tr td h2 em strong {
color: #fdf5e6;
font-size: x-large;
text-align: left;
.twoColFixLtHdr #container #sidebar1 table {
color: #D1FFF0;
.Maroon {
color: #4a0019;
.maroon {
color: #4a0019;
.sidebarfont2 {
color: #d1fff0;
.twoColFixLtHdr #container #sidebar1 table tr td strong center strong {
color: #d1fff0;
a {
font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
.twoColFixLtHdr #container center div p a {
font-weight: normal;
.twoColFixLtHdr #container center div p em {
font-size: 18px;
-->
</style><!--[if IE 5]>
<style type="text/css">
/* place css box model fixes for IE 5* in this conditional comment */
.twoColFixLtHdr #sidebar1 { width: 230px; }
</style>
<![endif]--><!--[if IE]>
<style type="text/css">
/* place css fixes for all versions of IE in this conditional comment */
.twoColFixLtHdr #sidebar1 { padding-top: 30px; }
.twoColFixLtHdr #mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]-->
<!-- TemplateBeginEditable name="head" -->
<!-- TemplateEndEditable -->
</head>
<body class="twoColFixLtHdr">
<div id="container">
  <div id="header">
    <h1><img src="../../Graphics/logo.jpg" width="145" height="93" /><img src="../../Graphics/black-seafoam banner.jpg" width="910" height="127" /></h1>
  <!-- end #header -->
    </h1>
  </div>
  <p><div id="sidebar1">
    <table width="200" border="0" align="center" cellpadding="2" cellspacing="2" bg="bg">
      <tr>
        <td width="166" height="0" align="center" valign="middle" bgcolor="#4a0019"><h2>
          <center>
            <strong><em>Main Menu</em></strong>
          </center>
        </h2></td>
      </tr>
      <tr>
        <td><a href="../../index.html">Home</a></td>
      </tr>
      <tr>
        <td><strong><a href="../../Main Menu/MJSNC Staff/STAFF.HTML">
          <center spry:hover="SIDEBARFONT">
            Staff
          </center>
        </a></strong></td>
      </tr>
      <tr>
        <td><strong><a href="../../Main Menu/MJSNC Board of Directors/mjsnc board of directors.html">
          <center>
            Board of Directors
          </center>
        </a></strong></td>
      </tr>
      <tr>
        <td><strong><a href="../../Main Menu/MJSNC Newsletter/mjsnc newsletter.html">
          <center>
            Newsletter
          </center>
        </a></strong></td>
      </tr>
    </table>
    <p> </p>
    <table width="200" border="0" cellpadding="2" cellspacing="2">
      <tr>
        <td width="168" bgcolor="#4a0019"><h2><strong><em><center>Programs &amp; Services</center></em></strong></h2></td>
      </tr>
      <tr>
        <td><strong><a href="../Education and Therapy/education and therapy program.html"><center>Education &amp; Therapy</center></a></strong></td>
      </tr>
      <tr>
        <td><a href="../Support Services/Services.html"><strong> <center>Services</center></strong></a></td>
      </tr>
      <tr>
        <td><strong><a href="Adult Training Facilities.html"><center>Adult Training Facilities</center></a></strong></td>
      </tr>
      <tr>
        <td><a href="../Social Recreation/social recreation.html"><strong><center>Social Recreation</center></strong></a></td>
      </tr>
      <tr>
        <td><strong><a href="../Early Intervention/early intervention.html"><center>Early Intervention</center></a></strong></td>
      </tr>
      <tr>
        <td><strong><a href="../Family Living Program/family living program.html"><center>Family Living Program</center></a></strong></td>
      </tr>
    </table>
    <p> </p>
    <table width="200" border="0" cellpadding="2" cellspacing="2">
      <tr>
        <td width="168" bgcolor="#4a0019"><h2><em><strong><center>What's Happening?</center></strong></em></h2></td>
      </tr>
      <tr>
        <td><a href="../Challenger Division Baseball/Challenger Main Page.html"><strong><center>Challenger Division</center></strong></a></td>
      </tr>
      <tr>
        <td><strong><a href="../../Whats Happening/Summer Recreation/Summer Rec.html"><center>Summer Recreation</center></a></strong></td>
      </tr>
      <tr>
        <td><strong><a href="../../Whats Happening/LIP SYNC 2012/Lip Sync 2011.html"><center>Annual Lip Sync'</center></a></strong></td>
      </tr>
    </table>
  <p> </p></div>
  <table width="700" border="2" cellspacing="2" cellpadding="1">
    <tr>
      <td><p>Adult Training Facilities</p>
        <p> </p>
        <p>MARCELLA GANOE CENTER- </p>
<p>439 SOUTH JUNIATA STREET LEWISTOWN,  PA 17044</p>
        <p><img src="../../Graphics/white-black flower.jpg" width="160" height="156" /></p>
        <p>COMPASS CORNER-</p>
        <p>31 SOUTH DORCAS STREET LEWISTOWN, PA 17044 </p>
<p> </p>
        <p>The Mifflin-Juniata Special Needs Center has two Adult  Training Facilities in operation. The Marcella Ganoe Center, located at 439  South Juniata Street &amp; Compass Corner, located at 31 South Dorcas Street.  Both facilities operate year round, five days per week. </p>
      <p>This program is designed to maximize an individual's  opportunity to participate in their community. Staff serves as adult role  models and challenges each participant to reach their highest level of ability  in daily living skills, social and physical development and interactions with  others.</p></td>
    </tr>
  </table>
  <p align="center"> </p>
  <p align="center"> </p>
  <table width="700" border="2" cellspacing="2" cellpadding="1">
    <tr>
      <td><img src="../../Graphics/Ganoe 2.jpg" width="448" height="322" /></td>
      <td><img src="../../Graphics/compass 5.jpg" width="504" height="346" /></td>
    </tr>
    <tr>
      <td><img src="../../Graphics/compass 1.jpg" width="424" height="323" /></td>
      <td><img src="../../Graphics/Ganoe Thank you.jpg" width="492" height="346" /></td>
    </tr>
  </table>
  <p align="center"> </p>
  <p align="center"> </p>
  <blockquote> </blockquote>
  <center>
  <p> </p>
  <div style="text-align: center; border-top: 2px solid #999; margin-top: 1em;">
    <p><a href="../../index.html">Home</a> • <a href="Main Menu/Contact Us/Contact Us.html">Contact Us • Map &amp; Directions</a> • <a href="../../Main Menu/About Us/About Us.html">About Us</a></p>
  </div>
</center>
<hr />
<font face=papyrus><center></center></font></div>
</body>
</html>

Similar Messages

  • How to apply different CSS styles to different table cells?

    I have an h:dataTable table and I would like to apply different CSS styles to different table cells depending on their content. If I were doing JSP I would probably have a <c:if> test on the cells, and give them a style name depending on contents, and then define the styles in a separate style sheet. Is there a way in JSF to do the equivalent? Thanks.

    mitchgart wrote:
    BalusC wrote:
    How to achieve a cell-specific style is already answered in my 1st reply of this topic.That tells how to apply a style to the text (or other content) inside a cell but not how to apply a style to the <td> as a whole. It would work for something like text font or text color but not cell border.
    I'm thinking I can mark the content somehow and then have javascript traverse the DOM, find marked content, and traverse outward to the enclosing <td>. Is there a better way?BalusC already spoke about rowClasses and columnClass attributes, I assume those are insufficient.
    The Tomahawk dataTable component has the rowStyleClass and rowStyle attributes for assigning CSS to the HTML tr tag. One is allowed to reference the row data variable when assigning values to these. However, see https://issues.apache.org/jira/browse/TOMAHAWK-523 for workarounds to bugs in some implementations.
    The Tomahawk column component has the styleClass and style attributes for assigning CSS to the HTML td tag. These also may reference the row data variable.

  • Apply certain css styles only when JS is enabled?

    I'm wondering if there's a relatively simple way to apply certain CSS styles only when JavaScript is enabled in the browser (and thus, not applied when JS is disabled)... I've created a jQuery-based image gallery, and I'd like to modify how it degrades by selectively disabling certain CSS styles...
    thanks for any direction here.

    Hi
    As your jQuery image gallery would not work correctly if javascript was disabled,. The better approach would be to enable the required css styles using jQuery, (the title says this, but your post says the opposite).
    To do this see the jQuery documentation regarding css, at -http://api.jquery.com/css/.
    PZ

  • I add pictures to existing web page using iweb(3.0.1) and new pictures show in all browsers EXCEPT firefox. Previous patches seem only good for iweb 2.X

    web page created with iweb (3.0.1). worked great in firefox, then I added additional photos to an existing web page. All other browsers see these new pictures EXCEPT firefox. There seems to have been a previous issue with new pages, but fix appears only fro iweb2.x
    == This happened ==
    Every time Firefox opened
    == new photos added to existing page

    Do you see any error messages about getElementsByClassName in the Tools > Error Console ?
    That was the problem with content generated with an older version of iWeb.
    Content that has been generated with such an older version needs to be regenerated with that never version and uploaded to the web server.
    Never versions of iWeb should cause any problems.
    Can you post a link?
    See https://bugzilla.mozilla.org/show_bug.cgi?id=405903 - iWeb 2.x/iWeb 08 sites with photos or slideshows do not work in Gecko browsers (Bug 405903#c69)

  • Embed gallery to existing web page?

    I am creating a html gallery with lightroom 1.4.1, and succesfully uploaded the gallery to my webite with it's own page index.html
    But I would like to embed it in a existing web page.
    Is there a simpleway to do this.
    Thx
    Brad

    I embed the slideshow into another page by using an iframe.  Crude sample code follows where index.html would be the slideshow.
    <html>
    <head>
    <title>2009 Florida Vacation</title>
    </head>
    <body>
    <div align="center">
    <iframe frameborder="0" src="index.html">This web page uses floating frames and your web browser does not support them. Maybe you should consider updating your browser to a newer one.</iframe>
    <p><a href="../index.html">Home Page</a></p>
    </div>
    </body>
    </html>

  • How can I add a podcast episode to an existing web page using iWeb?

    How can I add an episode to an existing web page using iWeb?
    I could probably figure this out but I am afraid if I make changes to the site and re-upload it to the podcast area I will have just doubled it. I see them repeated from time to time.
    What is the proper protocal? Thanks
    Mac G4   Mac OS X (10.4.3)  

    Hi apple-owner,
    Method 1.
    To create this scatter-plot, I selected the whole of Columns A and B. (Shift click on the Column reference tabs).
    The plot ignores blank rows, but they are "ready" for new data:
    Method 2
    If you did not select whole columns, you can extend the "active" rows. Rows 1-5 selected:
    Add more data rows and drag the fill handle (small white circle, bottom right) down
    Regards,
    Ian.

  • Access existing web pages from '08?

    Here's the deal - I have had web pages set up with iWeb '06 w/Tiger, no problem. I installed (on a separate disk) Leopard, and iLife 08. So, if I boot from my Tiger disk, all is well, I can edit my web pages using iWeb '06.
    When I boot to my Leopard drive, and use iWeb '08, it just comes up to the default 'choose your layout' - it knows nothing about my existing .Mac web pages.
    How do I open my existing web pages from a different drive / partition using iWeb '08, that was created from iWeb '06 on a different boot drive?
    Many free beers await the first person to help me out on this. Thanks,
    John F

    Hi John,
    Have a look at the following page
    http://transfer.iwebfaq.org
    The only thing that changes for you is that you're transferring it from one drive to the other instead of from one computer to another.
    Please make a backup of the file before getting your site into iWeb '08 (and after if it was successful). Be sure to update the iWeb application before opening your website with it (get it to version 2.0.2)
    And note that once you updated the site to iWeb 2.0 it can't be edited in iWeb '06 anymore.
    I don't drink beer sorry...
    Regards,
    Cédric
    "I don't receive any form of compensation, financial or otherwise, from my recommendation or link"

  • How to create a jquery as a table instead of a web page so that it can be embedded into an existing web page

    I am new to Dreamweaver and I just built a jquery with 3 tabs of information I want to put into my existing web page.  It has saved it as an entire webpage, but it needs to be a table that I can insert into my existing web page.  It's 3 tabs that have product information under each tab for my customers to view. How do I do this?

    Let's start at the very beginning.
    #1 Have you defined a Local Site in DW yet?  Without this critical step, DW can't manage links & assets for you.
    Simplified site setup in Dreamweaver CS5 | Learn Dreamweaver CS5 & CS5.5 | Adobe TV
    Once your site is defined -- including the remote server log-in credentials, you can upload files or folders of files by simply clicking the UP arrow which PUTS files to remote server.  See screenshot.  Conversely, the DOWN arrow GETS files from the remote server and saves them to your Local hard drive.
    Nancy O.

  • Attach existing CSS style sheet to existing site

    Hello all,
    I have an external CSS style sheet called default.css. I have an existing site of 61 pages that I want to apply default.css. Is there a way to apply a CSS file to multiple pages? Or am I doomed to going through the process 61 times?
    Thanks for your time.

    Thanks for replying Ben.
    I 'forced' it to work. Fortunately, the pages were all linked to the same style sheet, so I just did a 'Find and Replace All'.
    Thanks again.

  • How to apply a css style to a radio button.

    I cannot seem to persuade jsf to pass css styles through to a radio button.
    I have markup like this:
    <h:selectOneRadio id="direction" styleClass="largish-form" >
      <f:selectItem id="positive" itemLabel="positive" itemValue="positive" />
      <f:selectItem id="negative" itemLabel="negative" itemValue="negative"  />
    </h:selectOneRadio>Which gets transformed into something like:
    <!-- edited for brevity -->
    <td>
      <label>
        <input type="radio" name="comp-amount-form:direction" value="positive" class="largish-form" />
        positive
      </label>
    </td>So the style does not get applied to the text of the label. I was expecting something like
    <span class="largish-form"> positive</span>.So how do I get styled labels on my radio buttons?
    Thanks in advance.

    For a standard Portal page you should use the Portal styles and associate them to a page. These effectively generate a CSS style sheet anyway if you view the HTML source of a rendered page in your browser.
    Using the correct PDK APIs you effectively reference the CSS tags in your Java or PL/SQL code.
    If your portlet need to open a page in a new window you can no longer reference the Portal page style as the CSS style sheet does not get attached.
    In this situation, code your HTML as normal and reference your CSS style sheets as normal.
    If you create you CSS sheet you can store it in a page as a file and access using the direct access URL like I showed you in a previous response regarding the storing of images.
    Cheers,
    John

  • Embedding expanding flash ads in existing web page.. help!

    Hi guys!
    I am having a problem and can't find a site anywhere that
    helps. My company have just started selling expanding flash ad
    spaces but I have no idea how to make these work on a current and
    very clunky site. The space on the page I have for skyscraper ads
    is 120px wide but obviously, flash ads that expand are much wider
    ((my current one is 240px wide) and need to expand over the rest of
    the content. Does anyone know of a site or can tell me what I have
    to do in my HTML and CSS to make these work?
    Thanks,
    Amy

    Flash by default goes to the top layer when you put it in a
    web page (an annoyance sometimes, but very convenient for this sort
    of thing). Just size your ad for the non-expanded skyscraper, and
    it should work.
    This may not be the package you are using, but if you go to
    dartmotif.com (a DoubleClick/Google site) and download their ad kit
    and some ads, you'll find some documentation that may answer other
    questions.

  • Saving css file while saving a web page

    Hello,
    when i save a web page using SAFARI, I cannot save all the content. I just got the HTML. Which is fine but... what if i want to save also other content, exspecially CSS. In IE you easily can. Why not in SAFARi?
    Or maybe it could be done and I simply don't know...
    thnaks,
    Rocco

    Safari 2.0.x for OS X 10.4 will allow you to save the whole contents of a page in a format that isn't too easy to extract items from.
    Give either Camino or Firefox a try, both of which will let you save a full static version of the website for off-line viewing.

  • How do I retrieve information from an existing web page?

    I'm not sure if I'm in the right place to ask this question,
    but I hope I am. I'm trying to creating a catalog program for
    myself. I am envisioning it to be something like netag or
    pricewatcher. How do I create a search box that will search a
    listing of websites and pull certain information, then add that to
    a databse? Thank you for help on such a bizzare question.

    Read up on CFHTTP at
    http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-p58.htm#wp1632966.
    After execution, the variable CFHTTP.FileContent will contain the
    entire Web page. You'll have to build a parser to scrape the
    screen.
    A couple of observations.
    Plan on it taking several seconds for each Web site your
    getting. More an issue of Internet speed and remote server
    responsiveness than any thing else.
    Also, it would be a good idea if you have permission from the
    owners of the sites you plan to tap.

  • How to apply a css style to vbox.

    I'd like to apply below style to vbox. But It's not changed.
    When I use ID property, it's changed, But I want to use class property.
    .v-box{
         -fx-spacing:10;
         -fx-alignment:center;
    Edited by: shakddoo on 2012. 4. 20 오후 9:08
    Edited by: shakddoo on 2012. 4. 20 오후 9:08

    .v-box is not a standard css selector.
    You could used VBox (capitalized exactly like that and without a leading .) and it will work because you can select based upon type name, for example:
    VBox {
      -fx-spacing:10px;
      -fx-alignment:center;
    }Alternately you can create your own .v-box class and assign it to your VBox and it will work, for example:
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.scene.layout.*;
    import javafx.stage.Stage;
    public class CssSample extends Application {
      @Override public void start(Stage stage) {
        VBox box = new VBox();
        box.getChildren().addAll(
          new Label("On either side the river lie,"),
          new Label("Long fields of barley and of rye,"),
          new Label("And through the fields,"),
          new Label("A road runs by,"),
          new Label("To many-towered Camelot")
        box.getStyleClass().add("v-box");
        StackPane layout = new StackPane();
        layout.getChildren().addAll(box);
        Scene scene = new Scene(layout);
        scene.getStylesheets().addAll(getClass().getResource("styledvbox.css").toExternalForm());
        stage.setScene(scene);
        stage.show();
      public static void main(String[] args) { launch(args); }
    // styledvbox.css
    .v-box {
      -fx-spacing: 50px;
      -fx-alignment: center;
    .label {
      -fx-font-family: "Comic Sans MS";
      -fx-text-fill: salmon;
      -fx-effect: dropshadow(one-pass-box, mistyrose, 10, 0, 1, 1);
    .root {
      -fx-padding: 200px;
      -fx-font-size: 48px;
      -fx-background-image: url('http://upload.wikimedia.org/wikipedia/commons/8/83/JWW_TheLadyOfShallot_1888.jpg');
      -fx-background-size: contain;
      -fx-background-repeat: no-repeat;
      -fx-background-position: center;
      -fx-background-color: cornsilk; 
    }

  • CSS on a template shows a different style on the actual web page.

    I have created a template and made my sub pages according to
    the template. Late I have made some changes to the template and all
    the changes (Basic HTML changes) got effected on the pages that
    referring the this template.
    The I attached a style sheet that does some styling to my
    menu area (Which is a non editable area according to the template).
    When I update the site the pages didn't show up the expected
    styling. Instead they show some different styling.
    I am using Dreamweaver 8 and tested the site on both firefox
    2 and IE 7.
    Can anyone help me to solve this?

    They do not turn to a light color. There is no a:hover rule
    that would
    require that. You have this -
    .navigation:hover{
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: bold;
    color: #000000;
    background-color: #FE0035;
    display: block;
    padding: 8px;
    width: auto;
    which is exactly what I see (although it is unnecessarily
    verbose). It
    could be this -
    .navigation:hover{
    background-color: #FE0035;
    since those other styles are covered in the definition for
    .navigation. But
    in both cases, the COLOR value is #000000. The background
    color change is
    what you declre in the CSS (yellow -> red).
    > What I am getting is the menu in green color text and at
    the mouse move
    > over
    > they turn to black. !!!??
    The menu is not green - it's black. It may look green because
    of the yellow
    background. Make the background white - you'll see.
    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
    ==================
    "Asanke" <[email protected]> wrote in
    message
    news:g3o40l$gmr$[email protected]..
    > What you are saying is u can see the links on the
    left(Which is the menu
    > in the
    > page) appears in color black, and when the mouse moves
    over them they turn
    > in
    > to a light color and the back ground turned in to a dark
    color?
    > :(
    > What I am getting is the menu in green color text and at
    the mouse move
    > over
    > they turn to black. !!!??
    >

Maybe you are looking for