Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default CSS Link Style

    I've been messing with Dreamweaver's CSS styles for the past hour trying to
    figure out how to override the page's properties link colors. I have a menu to
    the left of my site that I wish to be black linked and the links in the center
    of my page (the ones that fit in with the content) to be a light gray color.
    How can I get the two to work cooperatively? Can someone tell me a CSS function
    or direct me to a website in which I can learn this? All help is appriciated.

    Silwolffe Guest

  2. Similar Questions and Discussions

    1. htmlText <a> style a:link
      I have this Text: <mx:Text x="10" y="435" link="bookmark()"> <mx:htmlText><!]></mx:htmlText> </mx:Text> I want to style the anchor tag like...
    2. Character style has a little + after style
      Sometimes when I try to change some copy to a particular character style, the font won't fully change. Instead I get a small + after the style. How...
    3. preserve the link to a single Excel cell when updating link
      I want to import a single cell from an Excel spreadsheet into InDesign CS. Initially, I am placing a single cell into a text frame and get the...
    4. Need help with Style conversion from Style object to Style key/value collection.
      I am writing a custom control that derives from the DataGrid control. I would like to apply SelectedItemStyles and ItemStyles for use in my derived...
    5. Number format German style => English style when importing CSV files into MySQL-DB
      Hi there, I'm trying to import a csv file into my MySQL database. Unfortunately the number format for the price column is formatted in German...
  3. #2

    Default Re: CSS Link Style

    On 13 Apr 2005 in macromedia.dreamweaver.appdev, Silwolffe wrote:
    > I've been messing with Dreamweaver's CSS styles for the past hour
    > trying to figure out how to override the page's properties link
    > colors. I have a menu to the left of my site that I wish to be black
    > linked and the links in the center of my page (the ones that fit in
    > with the content) to be a light gray color. How can I get the two to
    > work cooperatively? Can someone tell me a CSS function or direct me
    > to a website in which I can learn this?
    [url]http://projectseven.com/tutorials/css/pseudoclasses/[/url]

    --
    Joe Makowiec
    [url]http://makowiec.net/[/url]
    Email: [url]http://makowiec.net/email.php[/url]
    Joe Makowiec Guest

  4. #3

    Default Re: CSS Link Style

    On Thu, 14 Apr 2005 01:33:28 +0000 (UTC), Silwolffe
    <webforumsuser@macromedia.com> wrote:
    > I've been messing with Dreamweaver's CSS styles for the past hour trying
    > to
    > figure out how to override the page's properties link colors. I have a
    > menu to
    > the left of my site that I wish to be black linked and the links in the
    > center
    > of my page (the ones that fit in with the content) to be a light gray
    > color.
    > How can I get the two to work cooperatively? Can someone tell me a CSS
    > function
    > or direct me to a website in which I can learn this? All help is
    > appriciated.
    >
    a:link {color:red !important;}

    The !important tag override previous css parameters

    a affects all links
    a:link
    a:hover when mouse is over the link

    --
    Alexandro Colorado
    ------------------------------
    Support Engineer
    InterAKT Online
    [url]http://www.interaktonline.com[/url]
    Tel: 40(21) 312.5312
    Alexandro Colorado Guest

  5. #4

    Default Re: CSS Link Style

    Thank you both for your support.
    Silwolffe Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139