I need help with css

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

  1. #1

    Default I need help with css

    help please.

    I am working with templates and have two editable regions, "Content" and
    "Navigation". In the navigation region, I insert a library item which is a
    table of my roll over navigation button. Some buttons have sub-topics so
    underneath them I have some typed in links. These links are colored white
    against a dark blue backround. Problem is the backround in my "content"
    editable region region is white and there are links in there too so the links
    appear invisible.

    Basicly, How can I write the rules for these two seperate regions so I can
    have each section to have their own link color?


    entretec Guest

  2. #2

    Default Re: I need help with css

    You mean while you are working in DW's Design view?

    --
    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
    ==================


    "entretec" <webforumsuser@macromedia.com> wrote in message
    news:e9r3j2$4ne$1@forums.macromedia.com...
    > help please.
    >
    > I am working with templates and have two editable regions, "Content" and
    > "Navigation". In the navigation region, I insert a library item which is a
    > table of my roll over navigation button. Some buttons have sub-topics so
    > underneath them I have some typed in links. These links are colored white
    > against a dark blue backround. Problem is the backround in my "content"
    > editable region region is white and there are links in there too so the
    > links
    > appear invisible.
    >
    > Basicly, How can I write the rules for these two seperate regions so I can
    > have each section to have their own link color?
    >
    >

    Murray *ACE* Guest

  3. #3

    Default Re: I need help with css

    well, yeah ... I am working in design view and I check the code view to see how
    it looks(which deosn't do that much for me since I am not experienced enough),
    but I mean how do I write this in my style sheet, to have two <a> tag colors?

    entretec Guest

  4. #4

    Default Re: I need help with css

    Change this -

    </head>

    to this -

    <style type="text/css">
    <!--
    #section1 a { color:green; }
    #section2 a { color:blue; }
    -->
    </style>
    </head>

    And then you would wrap each section's links in a div with the appropriate
    ID, e.g.,

    <div id="section1">
    <a href="greenlinks.html">Green</a>
    </div>
    .....
    <div id="section2">
    <a href="bluelinks.html">Blue</a>
    </div>

    For what it's worth, the more you know about HTML and CSS, the easier your
    climb up DW's learning curve will be.

    --
    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
    ==================


    "entretec" <webforumsuser@macromedia.com> wrote in message
    news:e9r732$8od$1@forums.macromedia.com...
    > well, yeah ... I am working in design view and I check the code view to
    > see how
    > it looks(which deosn't do that much for me since I am not experienced
    > enough),
    > but I mean how do I write this in my style sheet, to have two <a> tag
    > colors?
    >

    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