Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Bill Roller on Jun 26, 2007 17:14
open dhtmlx forum
Formatting hyperlinks within a selected row.

I have hyperlinks within the cells of a dhtmlxGrid.  When I select the row, I am able to change the background color to dark blue and the font to white, however I am trying to change the color of the hyperlinks to white (not visited) and pink (visited).  The font and background color are changing, but not the hyperlinks.  I know the basic code is correct because When I put the a:link and a:visited outside of the div, it changes the colors for all links on the webpage.  Please help!  Thanks.

div.gridbox table.obj tr.rowselected td{
 a:link{color:white;}
 a:visited{color:pink;}
 background-color:#013a76;
 color:white;
  }

Answer posted on Jun 26, 2007 17:26
Just use next css instead of yours

div.gridbox table.obj tr.rowselected td{
background-color:#013a76;
 color:white;
  }

div.gridbox table.obj tr.rowselected td a:link{color:white;}
div.gridbox table.obj tr.rowselected td  a:visited{color:pink;}
Answer posted on Jul 05, 2007 01:13

Answer posted by radyno (Support) on Dec 09, 2014 16:53

Not much can be said in addition to the reply above, but you also can check data processer and javascript editable table and find out what we have probably missed in our explanation.