Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
Varient #1
Mulitiple Link Schemes
Is it possible to have 2 different link color schemes on the same page? In
other words, I want to have the links in my navigation bar be one color and
make all the pages main content links have another color. Can someone explain
if and how this can be accomplished.
Varient Guest
-
CSS colour schemes
This is probably stupid question no 5342 but is it possible to set up different colour scheme styles and have links for each option that the end... -
Multiple authentication schemes
Hi, I am currently using a ASP.NET CMS system(umbraco.org) which uses forms authentication. The forms authentication is used to allow editing of... -
mulitiple posts to a form
I have a looping / 'forest for the trees' problem: I insert into a table some temp data of new users. Then I need to post to a url two values... -
[PHP] Website templating schemes
> Search google for Smarty (I believe it's www.smarty.php) It's a great way That'd be smarty.php.net ... didn't know .php was a tld :) -
Website templating schemes
"Joel Konkle-Parker" <jjk3@msstate.edu> wrote in message news:1061915173.3f4b8a25b9c68@webmail.msstate.edu... two Neither sounds very exciting... -
Dan Rumney #2
Re: Mulitiple Link Schemes
Varient wrote:
I would suggest using stylesheets.> Is it possible to have 2 different link color schemes on the same page? In
> other words, I want to have the links in my navigation bar be one color and
> make all the pages main content links have another color. Can someone explain
> if and how this can be accomplished.
>
Here's one way to do it:
Use the stylesheet to define the link colour scheme for the body
body a
{...}
body a:hover
{...}
etc. for all of the anchor pseudo-classes
Then, give the block element that contains your navigation bar its own
id (e.g. "navBar" and define the colour scheme for that
#navBar * a
{...}
#navBar * a:hover
{...}
etc.
Dan
Dan Rumney Guest
-
Murray *TMM* #3
Re: Mulitiple Link Schemes
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
Team Macromedia Volunteer for Dreamweaver
(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
==================
"Varient" <webforumsuser@macromedia.com> wrote in message
news:dqc2vf$qse$1@forums.macromedia.com...> Is it possible to have 2 different link color schemes on the same page? In
> other words, I want to have the links in my navigation bar be one color
> and
> make all the pages main content links have another color. Can someone
> explain
> if and how this can be accomplished.
>
Murray *TMM* Guest



Reply With Quote

