This is a migrated thread and some comments may be shown as answers.

Hyperlinks in the black theme

2 Answers 58 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Sam
Top achievements
Rank 1
Sam asked on 02 Nov 2012, 07:51 PM
Hi,

I setup my ASP.Net app to use all of your built in themes.

They all look great, except the Black theme.

The hyperlinks are not white; they follow the standardized blue/red/purple.

See attached screen shot.
It shows a few controls such as the menu, grid, treeview, window, and panel.
Notice the hyperlinks are the only text that isn't themed white.

I really don't want to deal with a custom theme...

Honestly, I think it should be considered a bug that the hyperlinks aren't white in the Black theme.

2 Answers, 1 is accepted

Sort by
0
Accepted
Jayesh Goyani
Top achievements
Rank 2
answered on 03 Nov 2012, 03:08 PM
Hello,

Please add below CSS in your project so it will applied to all anchor tag.

a {
    color: #FFFFFF !important;
}


Note :
I am not able to reproduce this issue for (BLACK THEME) more info Please check below links.
http://demos.telerik.com/aspnet-ajax/grid/examples/generalfeatures/columntypes/defaultcs.aspx : Grid
http://demos.telerik.com/aspnet-ajax/menu/examples/overview/defaultcs.aspx  :Menu


Thanks,
Jayesh Goyani
0
Sam
Top achievements
Rank 1
answered on 07 Nov 2012, 03:45 PM
I had this in my css file which didn't work:
a.link
{
    cursor: default !important;
    text-decoration: none !important;
    color: #FFFFFF !important;
}
a.visited
{
    cursor: default !important;
    text-decoration: none !important;
    color: #FFFFFF !important;
}
a.hover
{
    cursor: default !important;
    text-decoration: none !important;
    color: #FFFFFF !important;
}
a.active
{
    cursor: default !important;
    text-decoration: none !important;
    color: #FFFFFF !important;
}

You suggestion of using:
a {
    color: #FFFFFF !important;
}

Works!

Shouldn't my css and your css have the same result?

Anyway, thanks!!!!
Tags
General Discussions
Asked by
Sam
Top achievements
Rank 1
Answers by
Jayesh Goyani
Top achievements
Rank 2
Sam
Top achievements
Rank 1
Share this question
or