NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: astahl on September 16, 2014, 05:42:48 AM

Title: Browse Link Colors
Post by: astahl on September 16, 2014, 05:42:48 AM
Hi,

I have a browse field that I am using as a download link. I like to change the text color to Navy instead of black.
I would like to put this color in my custom.css and use it when I need to.

Any ideas on what the property is and where to put it?


Ashley
Title: Re: Browse Link Colors
Post by: Bruce on September 16, 2014, 10:14:55 PM
Hi Ashley,

the property (for text color) is just
color

The links in browses and so on use the style;
.ui-widget-content a {
    color: #333;
}

so if you add this to your custom.css file you can change it to any color you like. for example (for blue)
.ui-widget-content a {
    color: #232dda;
}

In the Hyperlinks example the "company" column has an additional class ("Red") added to highlight that specific link.

Cheers
Bruce

Title: Re: Browse Link Colors
Post by: astahl on September 17, 2014, 05:30:37 AM
Thank you Bruce, as always your great!


Ashley