Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
entretec #1
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
-
Murray *ACE* #2
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
-
entretec #3
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
-
Murray *ACE* #4
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



Reply With Quote

