border-color

jQuery getting NaN error when trying to set border color (but it works?)

I'm changing the border color of an object via an animation: $listItem.siblings('li').andSelf().find('img').animate({ borderTopColor: defaultThumbBorderColor, borderBottomColor: defaultThumbBorderColor, borderLeftColor: defaultThumbBorderColor, borderRightColor: defaultThumbBorderColor }, 500 ); In Firefox, this work...

Data grid view header Grid color

This is a VB .NET application where we are showing the output of a SQL statement in a Datagrid view. using .NET 2005. We need to get the seperators of the headers on the grid control to be the same colors as the GridColor on the form. See the picture below: We've tried looking through all of the properties of the DataGridView contr...

How do I make a transparent border with CSS?

I have an Li Style as follows: li{ display:inline-block; padding:5px; border:1px solid none; } li:hover{ border:1px solid #FC0; } I need that when I hover over the Li the border appears without making the li's shift around. I sit possible to have a 'border' that's not visible? ...

JavaScript border-color/color styling

Hi! I'd like to style 'input.submit' of a form (hover effect for IE) using JS and tried the following which doesn't work unfortunately. <!--[if IE]> <script type="text/javascript"> // CHANGE SUBMIT STYLE var foo = document.getElementByClass('input.submit'); foo.onmouseover = this.style.border-color='#000000'; this.style.color='#000000'...

CKEditor read contents + set uiColor dynamically

Hello! I want to validate a form where I use CKEditor for one of the inputs. When an input is wrong, I set its border and background to colors of red. Using JavaScript, how can I read the contents of the CKEditor? Also, how can I make the editing textarea red background and red border? Thank you. ...