What is up with my link color being blue??

On this page:
http://www.dobiemaxwell.com/contact.html
The email link is blue.  However, I have the parameters set in Page Properties to be the same red as the other links.
Why is this happening?
Thanks!

You're being tripped up by some basic errors in the code:
1. Local desktop references in the code
<link rel="stylesheet" href="file:///C|/Users/Shelley/Desktop/mm_restaurant1.css" type="text/css" />
This line (which appears on every page and needs to be changed) is pointing to a style sheet on your local desktop.
DW inserts file:///C|Users/Shelley/Desktop when there's no site defined in DW because it does not know where your local site is located on your hard drive.
But that reference won't have any effect on the web because no-one but you has access to your desktop so, if the server can't find the file, it gets ignored.
Have you defined a site in Dreamweaver? This is step 1 for all website creation in DW.
The code should read something like:
<link rel="stylesheet" href="mm_restaurant1.css" type="text/css" />
2. Around Line 46 is this
a:link {
color:#B70000; /*
text-decoration: none;
Delete /* which is an opening comment marker (without a closing one).
It's causing the rest of the style rules in the page to be treated as a single unclosed comment i.e. they'll all be ignored.
3. Much of this block of code is redundant and contains some syntax errors:
a:link {
color:#B70000; /*
text-decoration: none;
a:visited {
text-decoration: none;
a:hover {
text-decoration: none;
color: #B70000;
a:active {
text-decoration: none;
text-decoration: none;a:visited {
text-decoration: none;
a:hover {
text-decoration: none;
a:active {
text-decoration: none;
text-decoration: none;a:visited {
text-decoration: none;
a:hover {
text-decoration: none;
a:active {
text-decoration: none;
Replace the above with:
a {
text-decoration: none;
color:#B70000;

Similar Messages

  • What is wrong with the iphoto not being able to email pictures?

    I reset my password on my email account and reset the mail account password on my macbook air as well.  I still get a message stating that the email server didn't recognize my username/password combination.  Is there something I am doing wrong?  I double checked to make sure the passwords are the same. 

    See if this works.   On iPhotos' menubar, iPhoto > Preferences > General tab.. > Email photos using: Mail

  • What's wrong with this or Hero DataGrid blues

    I am working with Hero DataGrid.To say it's meant to be hard is to to say nothing.
    Without going into what's not working here is some source code and its run time values:
    Code #1.
    owner.selectedItem[column.dataField] = 1;
    Message from compiler: 1119: Access of possibly undefined property selectedItem through a reference with static type flash.display:DisplayObjectContainer.   
    My genious thought: You need to cast it into Grid:
    Code #2:
    Grid(owner).selectedItem[column.dataField] = 1;
    Aha! No compiler error. Who's tha man?
    So far, so good. Letr's run it but suspend at the line:
    Grid(owner).selectedItem[column.dataField] = 1;
    Debugger will show:
    "Grid(owner).selectedItem"    null  Why????????
    but:
    owner.selectedItem:
    <consistpersonnel1>
      <id>
        0
      </id>
      <header_id>
        0
      </header_id>
      <person_id>
        2
      </person_id>
      <name_id>
        0
      </name_id>
      <worknum/>
    </consistpersonnel1>
    So, to Grid or not to Grid?

    DataGrid(owner).selectedItem[column.dataField]
    TypeError: Error #1034: Type Coercion failed: cannot convert spark.components::Grid@a4e9ae1 to spark.components.DataGrid

  • What is wrong with apple tv when the blue light flashes quickly

    I am having trouble with my apple tv device.  The blue light flashes continuously and will not reset at all.

    Welcome to the Apple Community.
    You might try restarting the Apple TV by removing ALL the cables for 30 seconds.

  • Link color problem

    I am trying to figure out how to change the color of a set of a links on my page using CSS. Here is what is going on:
    The link colors are currently set using the "Page Properties" button in DW, they are orange in color. I have a group of links that are listed on the left hand side of the page. Because of the background graphic, the orange color doesn't look good. I want to change it to a lighter color, such as white. I changed the color in the CSS style for these links to white (#FFFFFF). The show up correctly in DW but not in IE. I have IE6 on the computer I am designing on and IE8 on the system the site is goig to be on. It looks like these links are inheriting the orange color and I want to stop this. Thanks!

    What are the links on the left hand side of your page contained in, i.e, are they in a <div> or a table?
    To control the color of specific links you have to target them.
    As an example say I have a link in a <div> container (like below)
    <div><a href="welcome.html">Welcome</a></div>
    I would give the container <div> an 'id'. (I've chosen 'leftLinks' (see below) but you can call the 'id' what you want)
    <div id="leftLinks"><a href="welcome.html">Welcome</a></div>
    Now use some css to target the link/s in the <div> with the 'id' leftLinks
    #leftLinks a {
    color: #FC0;
    The above says to color any link yellow in the <div> with the 'id' of leftLinks.

  • Despite best efforts, cannot modify link colors in iWeb

    I am having issues with changing the colors of my hyperlinks in iWeb. Specifically, I having this problem while working with the "Welcome" page in the "Modern" style template.
    After searching through this forum, I followed advice to check out http://www.rowan-cottage.co.uk/Site/CSS%20in%20iWeb.html for tips on modifying the CSS and changing the hyperlink colors. While I was able to edit the .css file and change the unfollowed link colors to blue as planned, the followed link colors unexpectly changed to a strange purple color. Hovering was the same purple, but clicking the link and not releasing the mouse resulted in the link turning red (the default color) even after I had edited the .css file so that hover and followed links were to also be the same blue.
    I reloaded the page several times, I reset Safari, I looked at the page with Opera, Firefox, and IE, and it looked the same way in all browsers.
    Does anyone know what is going on here? Is there some sort of communication going on behind the scene that I am not seeing (such as, if unfollowed link = blue, then followed link = purple)? Do I need to edit the XML file? How?
    Advice appreciated! Thanks!
    iMac (PowerPC)   Mac OS X (10.4.4)  

    Okay, that was yesterday.
    Today the problem is not repeating.
    I have no idea what happened, but I as long as the problem is presently gone, I'm happy.

  • Don't want button images to show active link color

    I made hover buttons and when I link to them to the appropriate pages it creates a box with the link color around the whole button. So this changes the look of the button with an ugly blue border. I looked at the options in the page properties under links but not seeing anything to help. How do I have an active link but deactivate the box and color that identifies it as such? I primarily create my sites in the design mode as my CSS skills are not very strong. Thank you in advance.

    Use CSS.
    Add
    a img { border: none; }
    to your CSS stylesheet.

  • I have received an email from a friend with a link which I clicked. It directed me to the google home page and I am now suspicious that it is a virus  or a Trojan horse. I would know what to do on my PC but am new to Ipad. How can I check?

    I have received an email from a friend with a link which I clicked. It took me to the google home page. I am now suspicious that my friend's email account has been hijacked and the link contained a virus or a Trojan horse. I would know what to do on my PC but am new to the IPad. Can any form of Trojan horse be planted on IOS 6 or am I worrying unnecessarily? Reassurance would be most welcome as I do use the IPad for checking bank details and web purchases. Thanks for any help.

    PC virus won't run on iPad.

  • When I create a PDF with Adobe Reader XI, it wont take the links behind the images. Sometimes he does, mostly not.. Whats the solution? The links in text do work!

    When I create a PDF with Adobe Reader XI, it wont take the links behind the images. Sometimes he does, mostly not.. Whats the solution? The links in text do work!

    Hello,
    How can I give a answer back in the discussion on Adobe.com?
    I don’t see any link?
    1.      We have a subscription.
    2.      Im converting a newsletter from the web to PDF.
    3.      Sometimes I put a weblink behind the image in the newsletter. Most of the time PDF wont take the links behind the image.
    Only the tekstlinks are OK.
    [private data removed]

  • Need help with link colors.....

    New assignment at school (our 4th project).
    Our teacher has given us a preformatted .html document that we
    are not allowed to touch at all.
    Having a hard time grasping working this way......
    How do I change the color of the link in the top header
    without changing the color of the other links?
    How do I line the four paragraph divs up across my page
    horizontally (left to right)?
    http://student.ccbcmd.edu/~rsmit459/a_study_in_css/index.html

    The div that the "Select a Design" and it's links are in is
    called "#styles".
    I put this code into my .css file and it did nothing:
    .styles a:link {
    color: #FFFFFF;
    text-decoration: underline;}
    .styles a:visited {
    color: #999999;
    text-decoration: underline;}
    .styles a:hover {
    color: #FF0000;
    text-decoration: underline;}
    .styles a:active {
    color: #FF00FF;
    text-decoration: underline;}
    What am I doing wrong?

  • Issues with link color

    Hello!
    I am trying to change the link color to black and it keeps on
    changing back to red even though I have chosen black.
    Please help me ASAP
    Thanks!

    Hello ledamonza and welcome to the BlackBerry Support Community Forums.
    Sorry to hear you are having an issue with BlackBerry Link.
    To clarify, when you go to launch Link, you are getting an error? If so, can you please provide that error as it appears? 
    Thanks!
    -HMthePirate
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Problems with link colors

    I am currently using DW8 and I have been using Dreamweaver
    since DW2 . I am working on a site for an artist, where the
    thumbnails will be links to the pictures. (Right now I only have it
    set up fot the client to see if the colors of the paintings are
    approximately correct.)
    Because the background is dark, I set my link colors to a
    bright gold, which is what shows up in the Dreamweaver design view.
    But when I view it in my browser, the links are the default blue
    and purple, which does not look right on the page.
    I deleted the link to the style sheet, set the page
    properties to the gold color links, but they still show up blue in
    the browser. I have gone through the code... the links are set for
    golds....but they still show up the default colors.
    I am ready to tear my hair, the client is unhappy, and I do
    NOT know what to do.
    Any help out there??

    Have you cleared the browser cache?
    Do you have the links in this order:
    (LoVeHA ) Link, Visited, Hover Active
    If it's not that, then post a link to your page - it has to
    be in your code
    of in your css
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au
    ~ Forum Posting Guidelines ~
    http://www.adobe.com/support/forums/guidelines.html
    CSS Tutorials for Dreamweaver:
    http://www.adobe.com/devnet/dreamweaver/css.html
    "cwsculptor" <[email protected]> wrote in
    message
    news:f1mf98$6ln$[email protected]..
    >I am currently using DW8 and I have been using
    Dreamweaver since DW2 . I am
    > working on a site for an artist, where the thumbnails
    will be links to the
    > pictures. (Right now I only have it set up fot the
    client to see if the
    > colors
    > of the paintings are approximately correct.)
    > Because the background is dark, I set my link colors to
    a bright gold,
    > which
    > is what shows up in the Dreamweaver design view. But
    when I view it in my
    > browser, the links are the default blue and purple,
    which does not look
    > right
    > on the page.
    > I deleted the link to the style sheet, set the page
    properties to the gold
    > color links, but they still show up blue in the browser.
    I have gone
    > through
    > the code... the links are set for golds....but they
    still show up the
    > default
    > colors.
    > I am ready to tear my hair, the client is unhappy, and I
    do NOT know what
    > to
    > do.
    > Any help out there??
    >

  • Link color with iWeb '08 (2.01)

    So far I have found iWeb '08 (2.01) to work fine, except that the link colors are inconsistent. Even though all of the links are set to have a color (to indicate that they are a link), sometimes they do and sometimes they don't. The behavior seems to vary among browsers, and can sometimes change their mind after refreshing the cache. However, even on the same page, they are never all blue (or whatever other color I set for it) at the same time.
    The site is www.TecnoTur.us and (as of August 27, 2007) I haven't yet activated the subscription link. There are several other links on the home page that work, although most don't show any link color before hovering over them with the cursor.

    When I open your first page the links are all blue and turn red when the cursor hovers over them.
    The interesting thing is, if I stop your audio file from playing, the links are still blue but don't turn red for hovering. It might worth trying to upload the page with "autoplay" for the audio file turned off and see if this makes a difference.
    As you say, the page has to be refreshed for red "hovering" color to come back.

  • The screen of my MacBook Pro itself periodically switches the color. That is, with the usual colors, on some blue. What to do? Should be repaired, or you can figure out the most? HELP ME PLEASE!

    The screen of my laptop itself periodically switches the color. That is, with the usual colors, on some blue. What to do? Should be repaired, or you can figure out the most? HELP ME PLEASE!

    LambChops1,
    I’m using Mavericks, and it’s still possible to select text to drag and for cutting and pasting. Left-clicking and right-clicking is still possible, too.
    Try opening the Trackpad pane of System Preferences, and select the Point & Click tab. To right-click, ensure that your “Secondary click” checkbox has been checked; the small print under “Secondary click” is a dropdown menu which allows you to select the form of right-clicking that you prefer. (For instance, mine is set to “Click in bottom right corner”.) For left-clicking, is your “Tap to click” checkbox checked, or unchecked? (Mine is unchecked, since I prefer pushing for left-clicking over tapping to do so.)

  • Anybody know what's up with the menu.xml.files not being available for DW after installing on a new comp?

    Anybody know what's up with the menu.xml.files not being available for DW after installing on a new comp?

    Usually that error can be cleared up by renaming the personal config folder. Turn on your OS's hidden files and then go to...
    C: > Users > your username > AppData > Roaming > Dreamweaver (version) > your language > configuration
    Rename the configuration folder configuration-old and start DW up. That should create an entirely new configuration folder and correct the menu.xml file.

Maybe you are looking for