Page Properties - Links

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Page Properties - Links

    I have set my page properties for link colors/rolloever. This takes care of
    the links in my menus which are part of my template. But, I need links within
    the editable body to be a different color.

    The page properties are set for links to be white. My menu links are on a
    green background. But, when editing the body for a new page, links typed in
    the paragraph cannot be viewed as the body is white.

    How can I go about addressing this?

    Andrea F. Fahy Guest

  2. Similar Questions and Discussions

    1. C4 Page Properties Problem
      I use a table for my navigation links, one cell per link. I set page properties-link to Never Underline, and change the color for Rollover. Then...
    2. Help! Cannot edit Page Properties using CT3
      We designed our intranet using ASP and using a template we created in Dreamweaver. I have recently upgraded to Contribute 3 and so have others. When...
    3. Uneditable page Properties
      I have a similar problem. I have checked the Dreamweaver template syntax and it's fine, but Contribute 3 won't let my client edit the page...
    4. asp.net page not seeing custom control, can't set properties
      I have a asp.net.vb page with a custom control, and for some reason the codebehind is not seeing the control. The control is in a file...
    5. page properties
      Hi all, I ve probably a very simple question but i really can't find an answer. I d like to know in an ASP page what is the URL of the page, the...
  3. #2

    Default Re: Page Properties - Links

    In your CSS file (or in the template head), paste in the code below (modifying
    the font, text decoration, size, and color)...thenm in your body, select the
    links that you want to follow these CSS rules...

    .bodylink {color: WHATEVER COLOR; font-family: WHATEVER FONT; font-size: 12px;}
    .bodylink a:link {color: WHATEVER COLOR; text-decoration: none; font-family:
    WHATEVER FONT;}
    .bodylink a:visited {text-decoration: none; color: WHATEVER COLOR}
    .bodylink a:hover {text-decoration: underline; color: WHATEVER COLOR}
    .bodylink a:active {text-decoration: none; color: WHATEVER COLOR}

    David.Holley Guest

  4. #3

    Default Re: Page Properties - Links

    Pseudo-classes and container styles are what you need - here are some
    tutorials.
    [url]http://www.mako4css.com[/url]
    [url]http://www.thepattysite.com/linkstyles1.cfm[/url]
    [url]http://www.projectseven.com/tutorials/pseudoclasses/index.htm[/url]

    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "Andrea F. Fahy" <webforumsuser@macromedia.com> wrote in message
    news:emv73h$roa$1@forums.macromedia.com...
    >I have set my page properties for link colors/rolloever. This takes care
    >of
    > the links in my menus which are part of my template. But, I need links
    > within
    > the editable body to be a different color.
    >
    > The page properties are set for links to be white. My menu links are on a
    > green background. But, when editing the body for a new page, links typed
    > in
    > the paragraph cannot be viewed as the body is white.
    >
    > How can I go about addressing this?
    >

    Murray *ACE* 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