PC Review


Reply
Thread Tools Rate Thread

CSS a: hover style and automatic text color issues

 
 
Brightbelt
Guest
Posts: n/a
 
      26th Apr 2004
Hi-
I'm on FP 2003 and win XP Pro. I'm setting up modem
speed hyperlinks (eg, "14k - 56k - Dsl/Cab") for audio
clips with a CSS a: hover style for a mouse-over-
color/underline effect. My problem is that the mouse over
color and underline work fine but only when the original
text is set to automatic. But I want a different original
color or different automatic color because of a conflict
with my page color. Is there a way to change the
automatic color for text, at least on a page ? I've
looked over and over in all the options/page options/site
settings menus and I see nothing, except color-coding for
code text.
Just to make sure I'm doing the CSS correctly, let me
list how I'm doing it: I highlight the hyperlink(s), and
choose 'Style' from the main Format menu: choose the html
tag "a: hover" and click 'Modify'; click
format/choose 'Font' and then set the size, new color and
check the box for the underline effect; click Ok all the
way out and I'm there.
I haven't published the changes I'm working on because
other stuff is still in process but I will if I have to
to help this process out. Btw, I already have the code
for this CSS that was offered to me thru this newsgroup a
little while back, but I'm not a coder and would prefer
help directed in reflection of that fact. Thanks for your
help,...Brightbelt
 
Reply With Quote
 
 
 
 
Steve Easton
Guest
Posts: n/a
 
      26th Apr 2004
Set a ccs style for each link "condition." Since it is just for links the
following will work.
Place it between the head tags.
Modify the colors as desired and also the text-decoration:

<style type=text/css>
a{
text-decoration: none;
}
a:link {
background-color: transparent;
color: #0000FF;
text-decoration: underline;
}
a:visited {
background-color: transparent;
color: teal;
text-decoration: none;
}
a:hover {
background-color: transparent;
color: #FF0000;
text-decoration: underline;
}
</style>


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer

"Brightbelt" <(E-Mail Removed)> wrote in message
news:450001c42b9a$d00c4700$(E-Mail Removed)...
> Hi-
> I'm on FP 2003 and win XP Pro. I'm setting up modem
> speed hyperlinks (eg, "14k - 56k - Dsl/Cab") for audio
> clips with a CSS a: hover style for a mouse-over-
> color/underline effect. My problem is that the mouse over
> color and underline work fine but only when the original
> text is set to automatic. But I want a different original
> color or different automatic color because of a conflict
> with my page color. Is there a way to change the
> automatic color for text, at least on a page ? I've
> looked over and over in all the options/page options/site
> settings menus and I see nothing, except color-coding for
> code text.
> Just to make sure I'm doing the CSS correctly, let me
> list how I'm doing it: I highlight the hyperlink(s), and
> choose 'Style' from the main Format menu: choose the html
> tag "a: hover" and click 'Modify'; click
> format/choose 'Font' and then set the size, new color and
> check the box for the underline effect; click Ok all the
> way out and I'm there.
> I haven't published the changes I'm working on because
> other stuff is still in process but I will if I have to
> to help this process out. Btw, I already have the code
> for this CSS that was offered to me thru this newsgroup a
> little while back, but I'm not a coder and would prefer
> help directed in reflection of that fact. Thanks for your
> help,...Brightbelt



 
Reply With Quote
 
Brightbelt
Guest
Posts: n/a
 
      26th Apr 2004
Hi Steve-
I did what you suggested and have published the site
ahead of time so you could see what's happening - it
still doesn't work - I only get an underline effect on
the rollover. Could this have something to do with the
fact that I used Jbots code for this before and it's
still lingering in the code somewhere ?....I don't know.
I've deleted and erased the Jbots code as far as I can
tell. Here's the Url
Http://www.brightbeltmusic.com/Jazz_Links.htm Thanks for
your help,...Brightbelt


>-----Original Message-----
>Set a ccs style for each link "condition." Since it is

just for links the
>following will work.
>Place it between the head tags.
>Modify the colors as desired and also the text-

decoration:
>
><style type=text/css>
>a{
> text-decoration: none;
>}
>a:link {
> background-color: transparent;
> color: #0000FF;
> text-decoration: underline;
>}
>a:visited {
> background-color: transparent;
> color: teal;
> text-decoration: none;
>}
>a:hover {
> background-color: transparent;
> color: #FF0000;
> text-decoration: underline;
>}
></style>
>
>
>--
>Steve Easton
>Microsoft MVP FrontPage
>95isalive
>This site is best viewed..................
>...............................with a computer
>
>"Brightbelt" <(E-Mail Removed)> wrote

in message
>news:450001c42b9a$d00c4700$(E-Mail Removed)...
>> Hi-
>> I'm on FP 2003 and win XP Pro. I'm setting up modem
>> speed hyperlinks (eg, "14k - 56k - Dsl/Cab") for audio
>> clips with a CSS a: hover style for a mouse-over-
>> color/underline effect. My problem is that the mouse

over
>> color and underline work fine but only when the

original
>> text is set to automatic. But I want a different

original
>> color or different automatic color because of a

conflict
>> with my page color. Is there a way to change the
>> automatic color for text, at least on a page ? I've
>> looked over and over in all the options/page

options/site
>> settings menus and I see nothing, except color-coding

for
>> code text.
>> Just to make sure I'm doing the CSS correctly, let me
>> list how I'm doing it: I highlight the hyperlink(s),

and
>> choose 'Style' from the main Format menu: choose the

html
>> tag "a: hover" and click 'Modify'; click
>> format/choose 'Font' and then set the size, new color

and
>> check the box for the underline effect; click Ok all

the
>> way out and I'm there.
>> I haven't published the changes I'm working on

because
>> other stuff is still in process but I will if I have to
>> to help this process out. Btw, I already have the code
>> for this CSS that was offered to me thru this

newsgroup a
>> little while back, but I'm not a coder and would prefer
>> help directed in reflection of that fact. Thanks for

your
>> help,...Brightbelt

>
>
>.
>

 
Reply With Quote
 
Jack Brewster
Guest
Posts: n/a
 
      26th Apr 2004
After taking a quick look at your CSS I think your problem is because you
have "text-decoration: none" on everything EXCEPT :hover where you have
"text-decoration: underline".

All those "none" declarations are turning off your underlining.

As Steve mentioned:
"Modify the colors as desired and also the text-decoration:"

Since it sounds like you want the links to always be underlined, I'd suggest
this modification to Steve's code. Note that this _does_not_ take into
account any changes that you have already made on _your_ page. This is just
an edit of Steve's original suggestion. You will still need to make changes
to the color, etc.

<style type=text/css>
a{
text-decoration: underline;
}
a:link {
background-color: transparent;
color: #0000FF;
}
a:visited {
background-color: transparent;
color: teal;
}
a:hover {
background-color: transparent;
color: #FF0000;
}
</style>

--
Jack Brewster - Microsoft FrontPage MVP

"Brightbelt" <(E-Mail Removed)> wrote in message
news:45a001c42bb6$f7643bc0$(E-Mail Removed)...
> Hi Steve-
> I did what you suggested and have published the site
> ahead of time so you could see what's happening - it
> still doesn't work - I only get an underline effect on
> the rollover. Could this have something to do with the
> fact that I used Jbots code for this before and it's
> still lingering in the code somewhere ?....I don't know.
> I've deleted and erased the Jbots code as far as I can
> tell. Here's the Url
> Http://www.brightbeltmusic.com/Jazz_Links.htm Thanks for
> your help,...Brightbelt
>
>
> >-----Original Message-----
> >Set a ccs style for each link "condition." Since it is

> just for links the
> >following will work.
> >Place it between the head tags.
> >Modify the colors as desired and also the text-

> decoration:
> >
> ><style type=text/css>
> >a{
> > text-decoration: none;
> >}
> >a:link {
> > background-color: transparent;
> > color: #0000FF;
> > text-decoration: underline;
> >}
> >a:visited {
> > background-color: transparent;
> > color: teal;
> > text-decoration: none;
> >}
> >a:hover {
> > background-color: transparent;
> > color: #FF0000;
> > text-decoration: underline;
> >}
> ></style>
> >
> >
> >--
> >Steve Easton
> >Microsoft MVP FrontPage
> >95isalive
> >This site is best viewed..................
> >...............................with a computer
> >
> >"Brightbelt" <(E-Mail Removed)> wrote

> in message
> >news:450001c42b9a$d00c4700$(E-Mail Removed)...
> >> Hi-
> >> I'm on FP 2003 and win XP Pro. I'm setting up modem
> >> speed hyperlinks (eg, "14k - 56k - Dsl/Cab") for audio
> >> clips with a CSS a: hover style for a mouse-over-
> >> color/underline effect. My problem is that the mouse

> over
> >> color and underline work fine but only when the

> original
> >> text is set to automatic. But I want a different

> original
> >> color or different automatic color because of a

> conflict
> >> with my page color. Is there a way to change the
> >> automatic color for text, at least on a page ? I've
> >> looked over and over in all the options/page

> options/site
> >> settings menus and I see nothing, except color-coding

> for
> >> code text.
> >> Just to make sure I'm doing the CSS correctly, let me
> >> list how I'm doing it: I highlight the hyperlink(s),

> and
> >> choose 'Style' from the main Format menu: choose the

> html
> >> tag "a: hover" and click 'Modify'; click
> >> format/choose 'Font' and then set the size, new color

> and
> >> check the box for the underline effect; click Ok all

> the
> >> way out and I'm there.
> >> I haven't published the changes I'm working on

> because
> >> other stuff is still in process but I will if I have to
> >> to help this process out. Btw, I already have the code
> >> for this CSS that was offered to me thru this

> newsgroup a
> >> little while back, but I'm not a coder and would prefer
> >> help directed in reflection of that fact. Thanks for

> your
> >> help,...Brightbelt

> >
> >
> >.
> >



 
Reply With Quote
 
Steve Easton
Guest
Posts: n/a
 
      26th Apr 2004
In addition to what Jack wrote.
You have inline class names applied to each link.
The in line classes will over ride the styles set in the style script.

My recommendation: completely remove the links, save the page, redo the links
and then the style will work.

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer

"Brightbelt" <(E-Mail Removed)> wrote in message
news:45a001c42bb6$f7643bc0$(E-Mail Removed)...
> Hi Steve-
> I did what you suggested and have published the site
> ahead of time so you could see what's happening - it
> still doesn't work - I only get an underline effect on
> the rollover. Could this have something to do with the
> fact that I used Jbots code for this before and it's
> still lingering in the code somewhere ?....I don't know.
> I've deleted and erased the Jbots code as far as I can
> tell. Here's the Url
> Http://www.brightbeltmusic.com/Jazz_Links.htm Thanks for
> your help,...Brightbelt
>
>
> >-----Original Message-----
> >Set a ccs style for each link "condition." Since it is

> just for links the
> >following will work.
> >Place it between the head tags.
> >Modify the colors as desired and also the text-

> decoration:
> >
> ><style type=text/css>
> >a{
> > text-decoration: none;
> >}
> >a:link {
> > background-color: transparent;
> > color: #0000FF;
> > text-decoration: underline;
> >}
> >a:visited {
> > background-color: transparent;
> > color: teal;
> > text-decoration: none;
> >}
> >a:hover {
> > background-color: transparent;
> > color: #FF0000;
> > text-decoration: underline;
> >}
> ></style>
> >
> >
> >--
> >Steve Easton
> >Microsoft MVP FrontPage
> >95isalive
> >This site is best viewed..................
> >...............................with a computer
> >
> >"Brightbelt" <(E-Mail Removed)> wrote

> in message
> >news:450001c42b9a$d00c4700$(E-Mail Removed)...
> >> Hi-
> >> I'm on FP 2003 and win XP Pro. I'm setting up modem
> >> speed hyperlinks (eg, "14k - 56k - Dsl/Cab") for audio
> >> clips with a CSS a: hover style for a mouse-over-
> >> color/underline effect. My problem is that the mouse

> over
> >> color and underline work fine but only when the

> original
> >> text is set to automatic. But I want a different

> original
> >> color or different automatic color because of a

> conflict
> >> with my page color. Is there a way to change the
> >> automatic color for text, at least on a page ? I've
> >> looked over and over in all the options/page

> options/site
> >> settings menus and I see nothing, except color-coding

> for
> >> code text.
> >> Just to make sure I'm doing the CSS correctly, let me
> >> list how I'm doing it: I highlight the hyperlink(s),

> and
> >> choose 'Style' from the main Format menu: choose the

> html
> >> tag "a: hover" and click 'Modify'; click
> >> format/choose 'Font' and then set the size, new color

> and
> >> check the box for the underline effect; click Ok all

> the
> >> way out and I'm there.
> >> I haven't published the changes I'm working on

> because
> >> other stuff is still in process but I will if I have to
> >> to help this process out. Btw, I already have the code
> >> for this CSS that was offered to me thru this

> newsgroup a
> >> little while back, but I'm not a coder and would prefer
> >> help directed in reflection of that fact. Thanks for

> your
> >> help,...Brightbelt

> >
> >
> >.
> >



 
Reply With Quote
 
Jack Brewster
Guest
Posts: n/a
 
      26th Apr 2004
Good catch, Steve. I only looked at the CSS block, not at the actual HTML.

--
Jack Brewster - Microsoft FrontPage MVP

"Steve Easton" <(E-Mail Removed)> wrote in message
news:e$%(E-Mail Removed)...
> In addition to what Jack wrote.
> You have inline class names applied to each link.
> The in line classes will over ride the styles set in the style script.
>
> My recommendation: completely remove the links, save the page, redo the

links
> and then the style will work.
>
> --
> Steve Easton
> Microsoft MVP FrontPage
> 95isalive
> This site is best viewed..................
> ..............................with a computer
>
> "Brightbelt" <(E-Mail Removed)> wrote in message
> news:45a001c42bb6$f7643bc0$(E-Mail Removed)...
> > Hi Steve-
> > I did what you suggested and have published the site
> > ahead of time so you could see what's happening - it
> > still doesn't work - I only get an underline effect on
> > the rollover. Could this have something to do with the
> > fact that I used Jbots code for this before and it's
> > still lingering in the code somewhere ?....I don't know.
> > I've deleted and erased the Jbots code as far as I can
> > tell. Here's the Url
> > Http://www.brightbeltmusic.com/Jazz_Links.htm Thanks for
> > your help,...Brightbelt
> >
> >
> > >-----Original Message-----
> > >Set a ccs style for each link "condition." Since it is

> > just for links the
> > >following will work.
> > >Place it between the head tags.
> > >Modify the colors as desired and also the text-

> > decoration:
> > >
> > ><style type=text/css>
> > >a{
> > > text-decoration: none;
> > >}
> > >a:link {
> > > background-color: transparent;
> > > color: #0000FF;
> > > text-decoration: underline;
> > >}
> > >a:visited {
> > > background-color: transparent;
> > > color: teal;
> > > text-decoration: none;
> > >}
> > >a:hover {
> > > background-color: transparent;
> > > color: #FF0000;
> > > text-decoration: underline;
> > >}
> > ></style>
> > >
> > >
> > >--
> > >Steve Easton
> > >Microsoft MVP FrontPage
> > >95isalive
> > >This site is best viewed..................
> > >...............................with a computer
> > >
> > >"Brightbelt" <(E-Mail Removed)> wrote

> > in message
> > >news:450001c42b9a$d00c4700$(E-Mail Removed)...
> > >> Hi-
> > >> I'm on FP 2003 and win XP Pro. I'm setting up modem
> > >> speed hyperlinks (eg, "14k - 56k - Dsl/Cab") for audio
> > >> clips with a CSS a: hover style for a mouse-over-
> > >> color/underline effect. My problem is that the mouse

> > over
> > >> color and underline work fine but only when the

> > original
> > >> text is set to automatic. But I want a different

> > original
> > >> color or different automatic color because of a

> > conflict
> > >> with my page color. Is there a way to change the
> > >> automatic color for text, at least on a page ? I've
> > >> looked over and over in all the options/page

> > options/site
> > >> settings menus and I see nothing, except color-coding

> > for
> > >> code text.
> > >> Just to make sure I'm doing the CSS correctly, let me
> > >> list how I'm doing it: I highlight the hyperlink(s),

> > and
> > >> choose 'Style' from the main Format menu: choose the

> > html
> > >> tag "a: hover" and click 'Modify'; click
> > >> format/choose 'Font' and then set the size, new color

> > and
> > >> check the box for the underline effect; click Ok all

> > the
> > >> way out and I'm there.
> > >> I haven't published the changes I'm working on

> > because
> > >> other stuff is still in process but I will if I have to
> > >> to help this process out. Btw, I already have the code
> > >> for this CSS that was offered to me thru this

> > newsgroup a
> > >> little while back, but I'm not a coder and would prefer
> > >> help directed in reflection of that fact. Thanks for

> > your
> > >> help,...Brightbelt
> > >
> > >
> > >.
> > >

>
>



 
Reply With Quote
 
Brightbelt
Guest
Posts: n/a
 
      26th Apr 2004
Hi Jack-
I think I wasn't very clear explaining what I wanted. I
do want the underline ONLY on the hover, but I ALSO want
the color change (to red) (only) on the hover - I'm not
getting that result even though it's in the code. I want
the original link to be black or dark grey and the
visited link to be teal. If you look at my code, I think
the color/underline choices are there correctly and are
in accordance with what I'm saying but they still are not
working for some reason. I hope this clarifies where I'm
at and helps you help me !! Thanks,...Brightbelt



>-----Original Message-----
>After taking a quick look at your CSS I think your

problem is because you
>have "text-decoration: none" on everything EXCEPT :hover

where you have
>"text-decoration: underline".
>
>All those "none" declarations are turning off your

underlining.
>
>As Steve mentioned:
>"Modify the colors as desired and also the text-

decoration:"
>
>Since it sounds like you want the links to always be

underlined, I'd suggest
>this modification to Steve's code. Note that this

_does_not_ take into
>account any changes that you have already made on _your_

page. This is just
>an edit of Steve's original suggestion. You will still

need to make changes
>to the color, etc.
>
><style type=text/css>
>a{
> text-decoration: underline;
>}
>a:link {
> background-color: transparent;
> color: #0000FF;
>}
>a:visited {
> background-color: transparent;
> color: teal;
>}
>a:hover {
> background-color: transparent;
> color: #FF0000;
>}
></style>
>
>--
>Jack Brewster - Microsoft FrontPage MVP
>
>"Brightbelt" <(E-Mail Removed)> wrote

in message
>news:45a001c42bb6$f7643bc0$(E-Mail Removed)...
>> Hi Steve-
>> I did what you suggested and have published the site
>> ahead of time so you could see what's happening - it
>> still doesn't work - I only get an underline effect on
>> the rollover. Could this have something to do with the
>> fact that I used Jbots code for this before and it's
>> still lingering in the code somewhere ?....I don't

know.
>> I've deleted and erased the Jbots code as far as I can
>> tell. Here's the Url
>> Http://www.brightbeltmusic.com/Jazz_Links.htm Thanks

for
>> your help,...Brightbelt
>>
>>
>> >-----Original Message-----
>> >Set a ccs style for each link "condition." Since it is

>> just for links the
>> >following will work.
>> >Place it between the head tags.
>> >Modify the colors as desired and also the text-

>> decoration:
>> >
>> ><style type=text/css>
>> >a{
>> > text-decoration: none;
>> >}
>> >a:link {
>> > background-color: transparent;
>> > color: #0000FF;
>> > text-decoration: underline;
>> >}
>> >a:visited {
>> > background-color: transparent;
>> > color: teal;
>> > text-decoration: none;
>> >}
>> >a:hover {
>> > background-color: transparent;
>> > color: #FF0000;
>> > text-decoration: underline;
>> >}
>> ></style>
>> >
>> >
>> >--
>> >Steve Easton
>> >Microsoft MVP FrontPage
>> >95isalive
>> >This site is best viewed..................
>> >...............................with a computer
>> >
>> >"Brightbelt" <(E-Mail Removed)>

wrote
>> in message
>> >news:450001c42b9a$d00c4700$(E-Mail Removed)...
>> >> Hi-
>> >> I'm on FP 2003 and win XP Pro. I'm setting up

modem
>> >> speed hyperlinks (eg, "14k - 56k - Dsl/Cab") for

audio
>> >> clips with a CSS a: hover style for a mouse-over-
>> >> color/underline effect. My problem is that the mouse

>> over
>> >> color and underline work fine but only when the

>> original
>> >> text is set to automatic. But I want a different

>> original
>> >> color or different automatic color because of a

>> conflict
>> >> with my page color. Is there a way to change the
>> >> automatic color for text, at least on a page ? I've
>> >> looked over and over in all the options/page

>> options/site
>> >> settings menus and I see nothing, except color-

coding
>> for
>> >> code text.
>> >> Just to make sure I'm doing the CSS correctly,

let me
>> >> list how I'm doing it: I highlight the hyperlink

(s),
>> and
>> >> choose 'Style' from the main Format menu: choose the

>> html
>> >> tag "a: hover" and click 'Modify'; click
>> >> format/choose 'Font' and then set the size, new

color
>> and
>> >> check the box for the underline effect; click Ok all

>> the
>> >> way out and I'm there.
>> >> I haven't published the changes I'm working on

>> because
>> >> other stuff is still in process but I will if I

have to
>> >> to help this process out. Btw, I already have the

code
>> >> for this CSS that was offered to me thru this

>> newsgroup a
>> >> little while back, but I'm not a coder and would

prefer
>> >> help directed in reflection of that fact. Thanks for

>> your
>> >> help,...Brightbelt
>> >
>> >
>> >.
>> >

>
>
>.
>

 
Reply With Quote
 
Brightbelt
Guest
Posts: n/a
 
      26th Apr 2004
Hey, so you know-
I've tried different shades of red; I've tried typing
the color numbers directly into the code; I also changed
the color word 'teal' (visited link color) in the code
with the correct color # (008080) just to be safe, in
case that was messing up anything. I've tried typing the
numbers from my number pad instead of the main keyboard
numbers. So I'm out of ideas,...Any other ideas are
welcome ! Thanks,...Brightbelt


>-----Original Message-----
>Hi Jack-
> I think I wasn't very clear explaining what I wanted.

I
>do want the underline ONLY on the hover, but I ALSO want
>the color change (to red) (only) on the hover - I'm not
>getting that result even though it's in the code. I want
>the original link to be black or dark grey and the
>visited link to be teal. If you look at my code, I think
>the color/underline choices are there correctly and are
>in accordance with what I'm saying but they still are

not
>working for some reason. I hope this clarifies where I'm
>at and helps you help me !! Thanks,...Brightbelt
>
>
>
>>-----Original Message-----
>>After taking a quick look at your CSS I think your

>problem is because you
>>have "text-decoration: none" on everything

EXCEPT :hover
>where you have
>>"text-decoration: underline".
>>
>>All those "none" declarations are turning off your

>underlining.
>>
>>As Steve mentioned:
>>"Modify the colors as desired and also the text-

>decoration:"
>>
>>Since it sounds like you want the links to always be

>underlined, I'd suggest
>>this modification to Steve's code. Note that this

>_does_not_ take into
>>account any changes that you have already made on

_your_
>page. This is just
>>an edit of Steve's original suggestion. You will still

>need to make changes
>>to the color, etc.
>>
>><style type=text/css>
>>a{
>> text-decoration: underline;
>>}
>>a:link {
>> background-color: transparent;
>> color: #0000FF;
>>}
>>a:visited {
>> background-color: transparent;
>> color: teal;
>>}
>>a:hover {
>> background-color: transparent;
>> color: #FF0000;
>>}
>></style>
>>
>>--
>>Jack Brewster - Microsoft FrontPage MVP
>>
>>"Brightbelt" <(E-Mail Removed)>

wrote
>in message
>>news:45a001c42bb6$f7643bc0$(E-Mail Removed)...
>>> Hi Steve-
>>> I did what you suggested and have published the site
>>> ahead of time so you could see what's happening - it
>>> still doesn't work - I only get an underline effect on
>>> the rollover. Could this have something to do with the
>>> fact that I used Jbots code for this before and it's
>>> still lingering in the code somewhere ?....I don't

>know.
>>> I've deleted and erased the Jbots code as far as I can
>>> tell. Here's the Url
>>> Http://www.brightbeltmusic.com/Jazz_Links.htm Thanks

>for
>>> your help,...Brightbelt
>>>
>>>
>>> >-----Original Message-----
>>> >Set a ccs style for each link "condition." Since it

is
>>> just for links the
>>> >following will work.
>>> >Place it between the head tags.
>>> >Modify the colors as desired and also the text-
>>> decoration:
>>> >
>>> ><style type=text/css>
>>> >a{
>>> > text-decoration: none;
>>> >}
>>> >a:link {
>>> > background-color: transparent;
>>> > color: #0000FF;
>>> > text-decoration: underline;
>>> >}
>>> >a:visited {
>>> > background-color: transparent;
>>> > color: teal;
>>> > text-decoration: none;
>>> >}
>>> >a:hover {
>>> > background-color: transparent;
>>> > color: #FF0000;
>>> > text-decoration: underline;
>>> >}
>>> ></style>
>>> >
>>> >
>>> >--
>>> >Steve Easton
>>> >Microsoft MVP FrontPage
>>> >95isalive
>>> >This site is best viewed..................
>>> >...............................with a computer
>>> >
>>> >"Brightbelt" <(E-Mail Removed)>

>wrote
>>> in message
>>> >news:450001c42b9a$d00c4700$(E-Mail Removed)...
>>> >> Hi-
>>> >> I'm on FP 2003 and win XP Pro. I'm setting up

>modem
>>> >> speed hyperlinks (eg, "14k - 56k - Dsl/Cab") for

>audio
>>> >> clips with a CSS a: hover style for a mouse-over-
>>> >> color/underline effect. My problem is that the

mouse
>>> over
>>> >> color and underline work fine but only when the
>>> original
>>> >> text is set to automatic. But I want a different
>>> original
>>> >> color or different automatic color because of a
>>> conflict
>>> >> with my page color. Is there a way to change the
>>> >> automatic color for text, at least on a page ? I've
>>> >> looked over and over in all the options/page
>>> options/site
>>> >> settings menus and I see nothing, except color-

>coding
>>> for
>>> >> code text.
>>> >> Just to make sure I'm doing the CSS correctly,

>let me
>>> >> list how I'm doing it: I highlight the hyperlink

>(s),
>>> and
>>> >> choose 'Style' from the main Format menu: choose

the
>>> html
>>> >> tag "a: hover" and click 'Modify'; click
>>> >> format/choose 'Font' and then set the size, new

>color
>>> and
>>> >> check the box for the underline effect; click Ok

all
>>> the
>>> >> way out and I'm there.
>>> >> I haven't published the changes I'm working on
>>> because
>>> >> other stuff is still in process but I will if I

>have to
>>> >> to help this process out. Btw, I already have the

>code
>>> >> for this CSS that was offered to me thru this
>>> newsgroup a
>>> >> little while back, but I'm not a coder and would

>prefer
>>> >> help directed in reflection of that fact. Thanks

for
>>> your
>>> >> help,...Brightbelt
>>> >
>>> >
>>> >.
>>> >

>>
>>
>>.
>>

>.
>

 
Reply With Quote
 
Steve Easton
Guest
Posts: n/a
 
      26th Apr 2004
In addition to what Jack wrote.
You have inline class names applied to each link.
The in line classes will over ride the styles set in the style script.

My recommendation: completely remove the links, save the page, redo the links
and then the style will work.

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
> "Brightbelt" <(E-Mail Removed)> wrote in message
> news:45a001c42bb6$f7643bc0$(E-Mail Removed)...
> > Hi Steve-
> > I did what you suggested and have published the site
> > ahead of time so you could see what's happening - it
> > still doesn't work - I only get an underline effect on
> > the rollover. Could this have something to do with the
> > fact that I used Jbots code for this before and it's
> > still lingering in the code somewhere ?....I don't know.
> > I've deleted and erased the Jbots code as far as I can
> > tell. Here's the Url
> > Http://www.brightbeltmusic.com/Jazz_Links.htm Thanks for
> > your help,...Brightbelt
> >
> >
> > >-----Original Message-----
> > >Set a ccs style for each link "condition." Since it is

> > just for links the
> > >following will work.
> > >Place it between the head tags.
> > >Modify the colors as desired and also the text-

> > decoration:
> > >
> > ><style type=text/css>
> > >a{
> > > text-decoration: none;
> > >}
> > >a:link {
> > > background-color: transparent;
> > > color: #0000FF;
> > > text-decoration: underline;
> > >}
> > >a:visited {
> > > background-color: transparent;
> > > color: teal;
> > > text-decoration: none;
> > >}
> > >a:hover {
> > > background-color: transparent;
> > > color: #FF0000;
> > > text-decoration: underline;
> > >}
> > ></style>
> > >
> > >
> > >--
> > >Steve Easton
> > >Microsoft MVP FrontPage
> > >95isalive
> > >This site is best viewed..................
> > >...............................with a computer
> > >
> > >"Brightbelt" <(E-Mail Removed)> wrote

> > in message
> > >news:450001c42b9a$d00c4700$(E-Mail Removed)...
> > >> Hi-
> > >> I'm on FP 2003 and win XP Pro. I'm setting up modem
> > >> speed hyperlinks (eg, "14k - 56k - Dsl/Cab") for audio
> > >> clips with a CSS a: hover style for a mouse-over-
> > >> color/underline effect. My problem is that the mouse

> > over
> > >> color and underline work fine but only when the

> > original
> > >> text is set to automatic. But I want a different

> > original
> > >> color or different automatic color because of a

> > conflict
> > >> with my page color. Is there a way to change the
> > >> automatic color for text, at least on a page ? I've
> > >> looked over and over in all the options/page

> > options/site
> > >> settings menus and I see nothing, except color-coding

> > for
> > >> code text.
> > >> Just to make sure I'm doing the CSS correctly, let me
> > >> list how I'm doing it: I highlight the hyperlink(s),

> > and
> > >> choose 'Style' from the main Format menu: choose the

> > html
> > >> tag "a: hover" and click 'Modify'; click
> > >> format/choose 'Font' and then set the size, new color

> > and
> > >> check the box for the underline effect; click Ok all

> > the
> > >> way out and I'm there.
> > >> I haven't published the changes I'm working on

> > because
> > >> other stuff is still in process but I will if I have to
> > >> to help this process out. Btw, I already have the code
> > >> for this CSS that was offered to me thru this

> > newsgroup a
> > >> little while back, but I'm not a coder and would prefer
> > >> help directed in reflection of that fact. Thanks for

> > your
> > >> help,...Brightbelt
> > >
> > >
> > >.
> > >

>
>



 
Reply With Quote
 
Steve Easton
Guest
Posts: n/a
 
      26th Apr 2004
In addition to what Jack wrote.
You have inline class names applied to each link.
The in line classes will over ride the styles set in the style script.

My recommendation: completely remove the links, save the page, redo the links
and then the style will work.


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
"Brightbelt" <(E-Mail Removed)> wrote in message
news:47e701c42bcb$7473ad30$(E-Mail Removed)...
> Hey, so you know-
> I've tried different shades of red; I've tried typing
> the color numbers directly into the code; I also changed
> the color word 'teal' (visited link color) in the code
> with the correct color # (008080) just to be safe, in
> case that was messing up anything. I've tried typing the
> numbers from my number pad instead of the main keyboard
> numbers. So I'm out of ideas,...Any other ideas are
> welcome ! Thanks,...Brightbelt
>
>
> >-----Original Message-----
> >Hi Jack-
> > I think I wasn't very clear explaining what I wanted.

> I
> >do want the underline ONLY on the hover, but I ALSO want
> >the color change (to red) (only) on the hover - I'm not
> >getting that result even though it's in the code. I want
> >the original link to be black or dark grey and the
> >visited link to be teal. If you look at my code, I think
> >the color/underline choices are there correctly and are
> >in accordance with what I'm saying but they still are

> not
> >working for some reason. I hope this clarifies where I'm
> >at and helps you help me !! Thanks,...Brightbelt
> >
> >
> >
> >>-----Original Message-----
> >>After taking a quick look at your CSS I think your

> >problem is because you
> >>have "text-decoration: none" on everything

> EXCEPT :hover
> >where you have
> >>"text-decoration: underline".
> >>
> >>All those "none" declarations are turning off your

> >underlining.
> >>
> >>As Steve mentioned:
> >>"Modify the colors as desired and also the text-

> >decoration:"
> >>
> >>Since it sounds like you want the links to always be

> >underlined, I'd suggest
> >>this modification to Steve's code. Note that this

> >_does_not_ take into
> >>account any changes that you have already made on

> _your_
> >page. This is just
> >>an edit of Steve's original suggestion. You will still

> >need to make changes
> >>to the color, etc.
> >>
> >><style type=text/css>
> >>a{
> >> text-decoration: underline;
> >>}
> >>a:link {
> >> background-color: transparent;
> >> color: #0000FF;
> >>}
> >>a:visited {
> >> background-color: transparent;
> >> color: teal;
> >>}
> >>a:hover {
> >> background-color: transparent;
> >> color: #FF0000;
> >>}
> >></style>
> >>
> >>--
> >>Jack Brewster - Microsoft FrontPage MVP
> >>
> >>"Brightbelt" <(E-Mail Removed)>

> wrote
> >in message
> >>news:45a001c42bb6$f7643bc0$(E-Mail Removed)...
> >>> Hi Steve-
> >>> I did what you suggested and have published the site
> >>> ahead of time so you could see what's happening - it
> >>> still doesn't work - I only get an underline effect on
> >>> the rollover. Could this have something to do with the
> >>> fact that I used Jbots code for this before and it's
> >>> still lingering in the code somewhere ?....I don't

> >know.
> >>> I've deleted and erased the Jbots code as far as I can
> >>> tell. Here's the Url
> >>> Http://www.brightbeltmusic.com/Jazz_Links.htm Thanks

> >for
> >>> your help,...Brightbelt
> >>>
> >>>
> >>> >-----Original Message-----
> >>> >Set a ccs style for each link "condition." Since it

> is
> >>> just for links the
> >>> >following will work.
> >>> >Place it between the head tags.
> >>> >Modify the colors as desired and also the text-
> >>> decoration:
> >>> >
> >>> ><style type=text/css>
> >>> >a{
> >>> > text-decoration: none;
> >>> >}
> >>> >a:link {
> >>> > background-color: transparent;
> >>> > color: #0000FF;
> >>> > text-decoration: underline;
> >>> >}
> >>> >a:visited {
> >>> > background-color: transparent;
> >>> > color: teal;
> >>> > text-decoration: none;
> >>> >}
> >>> >a:hover {
> >>> > background-color: transparent;
> >>> > color: #FF0000;
> >>> > text-decoration: underline;
> >>> >}
> >>> ></style>
> >>> >
> >>> >
> >>> >--
> >>> >Steve Easton
> >>> >Microsoft MVP FrontPage
> >>> >95isalive
> >>> >This site is best viewed..................
> >>> >...............................with a computer
> >>> >
> >>> >"Brightbelt" <(E-Mail Removed)>

> >wrote
> >>> in message
> >>> >news:450001c42b9a$d00c4700$(E-Mail Removed)...
> >>> >> Hi-
> >>> >> I'm on FP 2003 and win XP Pro. I'm setting up

> >modem
> >>> >> speed hyperlinks (eg, "14k - 56k - Dsl/Cab") for

> >audio
> >>> >> clips with a CSS a: hover style for a mouse-over-
> >>> >> color/underline effect. My problem is that the

> mouse
> >>> over
> >>> >> color and underline work fine but only when the
> >>> original
> >>> >> text is set to automatic. But I want a different
> >>> original
> >>> >> color or different automatic color because of a
> >>> conflict
> >>> >> with my page color. Is there a way to change the
> >>> >> automatic color for text, at least on a page ? I've
> >>> >> looked over and over in all the options/page
> >>> options/site
> >>> >> settings menus and I see nothing, except color-

> >coding
> >>> for
> >>> >> code text.
> >>> >> Just to make sure I'm doing the CSS correctly,

> >let me
> >>> >> list how I'm doing it: I highlight the hyperlink

> >(s),
> >>> and
> >>> >> choose 'Style' from the main Format menu: choose

> the
> >>> html
> >>> >> tag "a: hover" and click 'Modify'; click
> >>> >> format/choose 'Font' and then set the size, new

> >color
> >>> and
> >>> >> check the box for the underline effect; click Ok

> all
> >>> the
> >>> >> way out and I'm there.
> >>> >> I haven't published the changes I'm working on
> >>> because
> >>> >> other stuff is still in process but I will if I

> >have to
> >>> >> to help this process out. Btw, I already have the

> >code
> >>> >> for this CSS that was offered to me thru this
> >>> newsgroup a
> >>> >> little while back, but I'm not a coder and would

> >prefer
> >>> >> help directed in reflection of that fact. Thanks

> for
> >>> your
> >>> >> help,...Brightbelt
> >>> >
> >>> >
> >>> >.
> >>> >
> >>
> >>
> >>.
> >>

> >.
> >



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
RE: Text color automatic Kassie Microsoft Excel Setup 0 3rd Jan 2009 08:54 AM
Search and change text color or style only Tony S. Microsoft Excel Programming 20 18th Feb 2008 08:59 PM
text font color style, this problem is driving me crazy, need help =?Utf-8?B?Ymx1ZWxhZ29vbl9IUA==?= Microsoft Word Document Management 2 25th Jul 2006 07:07 PM
how can I make a style changing background color of text? =?Utf-8?B?c2FmaXI=?= Microsoft Word Document Management 1 4th Jan 2006 01:17 PM
Automatic color for line style Sam Microsoft Excel Worksheet Functions 0 29th Jan 2004 06:25 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:06 AM.