Free-form menu with [INT] links, no active color???

Please post all install related problems here. Visit this forum first for troubleshooting.
Post Reply
foolevil
Posts: 20
Joined: Wed 7. Oct 2009, 18:37

Free-form menu with [INT] links, no active color???

Post by foolevil »

This is in wrong forum... should be in troubleshooting for newbies...

I stuck in a funny situation. Im trying to have a free-form menu and I found
[INT] internal link which I use inside a divs which I can place around:

<div id="baker">
[INT http://www.myinternaladdress.... etc]Link name[/INT]
</div>


Now... here I´m stuck. I want people see change in color with a: active
which I have in css data:

a:active {color:#0000FF} /* selected link */

I get mouseover color with no problem but no way to get "selected" color.

What it is?
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Re: Free-form menu with [INT] links, no active color???

Post by flip-flop »

It can´t run in this way.

Please read a little bit about the pseudo class active
A:active
Defines the style for active links.
A link becomes active once you click on it.
(An element is activated so long the mouse button is pressed).
If you need a real active state, you must use a navigation.
(NAV_LIST_UL with IDs)?

Or read this: How To Build Custom Menu

Or write/search for a suitable js snippet.

Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
foolevil
Posts: 20
Joined: Wed 7. Oct 2009, 18:37

Re: Free-form menu with [INT] links, no active color???

Post by foolevil »

Thanks.

I already found I need to use {NAV_LIST_UL}.

I use PHPWCMS too little.
Right now I have great difficulty finding out how to get rid of these • list dots...
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Re: Free-form menu with [INT] links, no active color???

Post by flip-flop »

Code: Select all

.my_class_name ul {
   list-style-type: none;
}
It is simple css for unordered lists.

Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
Post Reply