|
|
|
Next: Email upload
|
| Author |
Message |
External

Since: Jan 07, 2007 Posts: 318
|
(Msg. 16) Posted: Sat Aug 18, 2007 12:15 am
Post subject: Re: Anchor colors Archived from groups: alt>html (more info?)
|
|
|
tshad wrote:
Please don't top-post. Again.
> I tried some of the suggestions from here and the articles mentioned and
> still am confused. I tried applying this to a datagrid in asp.net which
> renders to something like (with the CSS):
If you had a URL as we've discussed you wouldn't need to post this code,
and we could all see the results, in all the browsers we have available,
with all the debugging tools we have.
> .gridHeaderStyle a:link, .gridHeaderStyle a:visited {
> color:#red;
> }
It's either color:red; or color:#FF0000; or color:#F00;
> a.gridHeaderStyle:link, a.gridHeaderStyle:visited {
> color:#red;
> }
You don't have any elements which match this selector, as previously
discussed.
> <tr class="gridHeaderStyle" align="Center">
> <td style="width:100px;"><a href="#">Location</a></td>
> </tr>
>
> No matter what I do - the links in the header are
> showing as lime green. I am trying to get them to change to red.
>
> The links in my site should be Lime Green (a:link and a:visited).
No, not exactly. Lime green is #00FF00.
> I have
> the headerstyles' CssClass set to gridHeaderStyle - but it doesn't seem to
> be working for the links in the header.
This comment is inexact enough to make me think you're doing something
(else) bizarre; when you say, "I have the headerstyles' CssClass set to
gridHeaderStyle," it makes me think you're using a class name as a
property for another class, which won't work. Of course without the URL
we can't see the entire code, and without the entire code we don't know
what's supposed to be a header.
>
> I though the ".gridHeaderStyle a:link" or a.gridHeaderStyle:link would
> override the a:link but it doesn't seem to be doing this.
>
> Am I missing something here?
It could be that you need to add the td to the selector, as in
..gridHeaderStyle td a:link, .gridHeaderStyle td a:visited { color:red; }
but I think you probably just need to get the value right. If you had
provided a URL I could have tested it and told you for sure.
Tom, you really, really need to get into a position (and train yourself
to be in the habit) to validate your code. If you keep bashing your head
against invalid code, you're only going to end up with a bloody
forehead. Study the tutorials provided earlier to get your selectors
right, but don't even bother hoping for good results (or asking here)
before you know you have valid code.
And then if you still need to ask here, bring a URL. We'll be glad to
help you then.
HTH. GL.
--
John |
|
| Back to top |
|
 |  |
External

Since: Jul 27, 2007 Posts: 17
|
(Msg. 17) Posted: Sat Aug 18, 2007 12:15 am
Post subject: Re: Anchor colors Archived from groups: per prev. post (more info?)
|
|
|
"John Hosking" <John RemoveThis @DELETE.Hosking.name.INVALID> wrote in message
news:46c61e0b$1_7@news.bluewin.ch...
> tshad wrote:
>
> Please don't top-post. Again.
>
>> I tried some of the suggestions from here and the articles mentioned and
>> still am confused. I tried applying this to a datagrid in asp.net which
>> renders to something like (with the CSS):
>
> If you had a URL as we've discussed you wouldn't need to post this code,
> and we could all see the results, in all the browsers we have available,
> with all the debugging tools we have.
>
>
>> .gridHeaderStyle a:link, .gridHeaderStyle a:visited {
>> color:#red;
>> }
>
> It's either color:red; or color:#FF0000; or color:#F00;
You're right. I just figured it out before I saw the post. The color was
originally something like #E6E6E6 but I just double clicked it and changed
it to red. Didn't notice it hadn't grabbed the #.
>
>> a.gridHeaderStyle:link, a.gridHeaderStyle:visited {
>> color:#red;
>> }
>
> You don't have any elements which match this selector, as previously
> discussed.
>
>
>> <tr class="gridHeaderStyle" align="Center">
>> <td style="width:100px;"><a href="#">Location</a></td>
>> </tr>
>
>>
>> No matter what I do - the links in the header are
>> showing as lime green. I am trying to get them to change to red.
>>
>> The links in my site should be Lime Green (a:link and a:visited).
>
> No, not exactly. Lime green is #00FF00.
Probably right.
>
>> I have
>> the headerstyles' CssClass set to gridHeaderStyle - but it doesn't seem
>> to
>> be working for the links in the header.
>
> This comment is inexact enough to make me think you're doing something
> (else) bizarre; when you say, "I have the headerstyles' CssClass set to
> gridHeaderStyle," it makes me think you're using a class name as a
> property for another class, which won't work. Of course without the URL we
> can't see the entire code, and without the entire code we don't know
> what's supposed to be a header.
>>
>> I though the ".gridHeaderStyle a:link" or a.gridHeaderStyle:link would
>> override the a:link but it doesn't seem to be doing this.
>>
>> Am I missing something here?
>
> It could be that you need to add the td to the selector, as in
> .gridHeaderStyle td a:link, .gridHeaderStyle td a:visited { color:red; }
> but I think you probably just need to get the value right. If you had
> provided a URL I could have tested it and told you for sure.
>
> Tom, you really, really need to get into a position (and train yourself to
> be in the habit) to validate your code. If you keep bashing your head
> against invalid code, you're only going to end up with a bloody forehead.
> Study the tutorials provided earlier to get your selectors right, but
> don't even bother hoping for good results (or asking here) before you know
> you have valid code.
>
Actually, have been looking at the tutorials but I still get confused as to
when to use:
..gridHeaderStyle a:link, .gridHeaderStyle a:visited {
color:#red;
}
or
a.gridHeaderStyle:link, a.gridHeaderStyle:visited {
color:#red;
}
It seems that the 1st is the correct one, in this case. This was what I was
testing and of course couldn't get past the error.
Thanks,
Tom
> And then if you still need to ask here, bring a URL. We'll be glad to help
> you then.
>
> HTH. GL.
>
> --
> John |
|
| Back to top |
|
 |  |
External

Since: Jan 07, 2007 Posts: 318
|
(Msg. 18) Posted: Sat Aug 18, 2007 12:21 am
Post subject: Re: Anchor colors Archived from groups: per prev. post (more info?)
|
|
|
tshad wrote:
[Previous text from tschad himself, including semi-relevant info, snipped]
>
> I also tried to change the Link to:
>
> <a style="color:#red;" href="#">
Please stop just guessing. Please validate your code.
>
> But that didn't work either.
>
> Tom
[rest of text from week-old and irrelevant posts snipped]
Please trim your posts.
--
John
Pondering the value of the UIP: http://blinkynet.net/comp/uip5.html |
|
| Back to top |
|
 |  |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|
|