I have a border color set for white, it works fine in FireFox but in IE there is no border can someone give me a hand please
Css issues, help please
Collapse
X
-
HereOriginally posted by swedguyPost what your code looks like
Code:<style type="text/css"> <!-- body,td,th { font-family: Verdana, Arial, Helvetica, sans-serif; color: #FFFFFF; border: #FFFFFF;; border-color: white; } body { background-color: #FFFFFF; background-image: url(bg.jpg); margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; border: #FFFFFF;; } .style1 { color: #AE0408; border: #FFFFFF;; border-color: white; } .style2 { font-size: x-large; font-weight: bold; color: #FFCC00; border: #FFFFFF;; border-color: white; } .style3 { color: #FFCC00; border: #FFFFFF;; border-color: white; } .style4 { color: #FF0000; border: #FFFFFF;; border-color: white; } .style5{border: 2px solid #FFFFFF; border-color: white;} .style7{border: #FFFFFF;; border-color: white;} } a:link { color: #FFFFFF; text-decoration: none; border: #FFFFFF;; border-color: white; } a:visited { text-decoration: none; color: #FFFFFF; border: #FFFFFF;; border-color: white; } a:hover { text-decoration: none; color: #FFFFFF; border: #FFFFFF;; border-color: white; } a:active { text-decoration: none; color: #FFFFFF; border: #FFFFFF;; border-color: white; } .style6 { font-size: x-large; font-weight: bold; color: #FFCC00; border: #FFFFFF;; border-color: white; } --> </style>Comment
-
yeah let's see it Pete.Originally posted by swedguyPost what your code looks likeComment
-
Originally posted by psilitry not to mix-match
border
and
border-color
-- border-color just defined color attributes
-- border allows you to define border width, style and color
*shrug*
Ive tried bith of them indepently and togather and still doesnt workComment
-
This is a nice old reference that is worth a bookmark: http://www.htmlhelp.com/reference/css/properties.html
Check the box properties.
It could also be other parts of your HTML code too. IE and FF handle Margin, Cellspacing and Padding differently. So if you have padding in the HTML, or other conflicting things, try one by one until you find it.43-922-863 Shut up and play your guitar.
Comment
-
-
Just look at the what style name the table has and set it in the appropriate style, for example:Originally posted by Pete-KTWhen I did that every table got a border even if the border is specified as zero
.style1 { ...... }
Make sure that the other tables doesn't use the same style.Comment
-
Hi Pete,
first off, there is an opening brace / close brace mismatch. Basically, the number of open don't match the number of close braces.
The culprit is style 5 and 7
next, you have multiple semi-colons after values, like this:
border: #FFFFFF;;
it should be:
border: #FFFFFF;
Cheers ...Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.Comment
-
At least he gave a thanks. So many times there's not even aOriginally posted by psiliYou going to share how it was fixed ?
Comment



Comment