Hi, Formspider team! I have a column as a hiperlink in my grid. I want it to be underlined under the cursor. My css is I guess something is wrong in it, because it doesn't work. Can anyone help me? Best regards |
Hi Inna, I don't know how to solve this issue with CSS (I'm sure there is a solution. But I just don't know it) but I always use the font-color="Blue" and font-style="Underlined" to make the links look like links. :-) Hope this helps. Kind Regards, |
We have an app that does this.... this is the css we use .x-grid3-hyperLink-col:link { text-decoration: none !important; color: Black !important; } .x-grid3-hyperLink-col:visited { text-decoration: none !important; color: Blue !important; } .x-grid3-hyperLink-col:hover { text-decoration: underline !important; color: Blue !important; } .x-grid3-hyperLink-col:active { text-decoration: underline !important; color: green !important; } This is placed in a custom CSS file linked to the app Simon |