NetTalk Central

Author Topic: Browse Link Colors  (Read 2767 times)

astahl

  • Sr. Member
  • ****
  • Posts: 308
    • View Profile
    • Email
Browse Link Colors
« 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

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11244
    • View Profile
Re: Browse Link Colors
« Reply #1 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


astahl

  • Sr. Member
  • ****
  • Posts: 308
    • View Profile
    • Email
Re: Browse Link Colors
« Reply #2 on: September 17, 2014, 05:30:37 AM »
Thank you Bruce, as always your great!


Ashley