Author Topic: buttons style on IE5.5 and older or AOL 7  (Read 8033 times)

0 Members and 1 Guest are viewing this topic.

Offline V@no

  • If you don't tell me what to do, I won't tell you where you should go :)
  • Global Moderator
  • 4images Guru
  • *****
  • Posts: 17.849
  • mmm PHP...
    • View Profile
    • 4images MODs Demo
buttons style on IE5.5 and older or AOL 7
« on: March 31, 2003, 02:36:47 AM »
Just wondering, why border width doesnt work on IE5.5 (look at login button on left):


I checked on all others browsers/os through http://www.browsercam.com
and it seems only AOL7 and IE5.5- are having this problem...

In the class I have:

Code: [Select]
.button {
  font-family:  Tahoma,Verdana,Arial, Helvetica, sans-serif;
background-color: #D9DDE1;
border: 1px
color: Black;
font-size : 10px;
font-weight : bold;
}

another thing, how come when I add semicolon border: 1px; then it quit showing any borders on any browsers...
do I do something wrong here?
Your first three "must do" before you ask a question:
Please do not PM me asking for help unless you've been specifically asked to do so. Such PMs will be deleted without answer. (forum rule #6)
Extension for Firefox/Thunderbird: Master Password+    Back/Forward History Tweaks (restartless)    Cookies Manager+    Fit Images (restartless for Thunderbird)

Offline Jan

  • Administrator
  • 4images Guru
  • *****
  • Posts: 5.024
    • View Profile
    • 4images - Image Gallery Management System
buttons style on IE5.5 and older or AOL 7
« Reply #1 on: March 31, 2003, 05:31:35 PM »
I guess that these browsers doesn't support the border attribute.

Jan
Your first three "must do" before you ask a question:
1. Forum rules
2. FAQ
3. Search

Offline ruck

  • Newbie
  • *
  • Posts: 10
    • View Profile
    • http://tttb.net/
buttons style on IE5.5 and older or AOL 7
« Reply #2 on: March 31, 2003, 07:10:43 PM »
When using just border it wants you to define all attributes of it. So a valid border entry would look like this..

Code: [Select]
border: 1px solid #000000;
If you want to just define the width of the border use the following..

Code: [Select]
border-width: 1px;
For more info look here.

Offline V@no

  • If you don't tell me what to do, I won't tell you where you should go :)
  • Global Moderator
  • 4images Guru
  • *****
  • Posts: 17.849
  • mmm PHP...
    • View Profile
    • 4images MODs Demo
buttons style on IE5.5 and older or AOL 7
« Reply #3 on: March 31, 2003, 11:13:28 PM »
Quote from: ruck
When using just border it wants you to define all attributes of it.
For more info look here.

Thank you very much!
that was it!
and the site is just awsome, I already found so many mistakes in my .css :?

but one question still stays not answered.
why we can not put semicolon at the end of "border" line?
even on the site u showed in the examples they dont put semicolon.
(just curious)
Your first three "must do" before you ask a question:
Please do not PM me asking for help unless you've been specifically asked to do so. Such PMs will be deleted without answer. (forum rule #6)
Extension for Firefox/Thunderbird: Master Password+    Back/Forward History Tweaks (restartless)    Cookies Manager+    Fit Images (restartless for Thunderbird)

Offline ruck

  • Newbie
  • *
  • Posts: 10
    • View Profile
    • http://tttb.net/
buttons style on IE5.5 and older or AOL 7
« Reply #4 on: April 01, 2003, 02:52:41 AM »
Interesting, I never noticed that before. I've always put the semicolon at the end and have never noticed any problems. But then again I use a Mac and when on a PC use IE 6.

Offline V@no

  • If you don't tell me what to do, I won't tell you where you should go :)
  • Global Moderator
  • 4images Guru
  • *****
  • Posts: 17.849
  • mmm PHP...
    • View Profile
    • 4images MODs Demo
buttons style on IE5.5 and older or AOL 7
« Reply #5 on: April 01, 2003, 04:08:20 AM »
ah, ok, that's because as u said, I didnt add enough parameters for "border:"

when I add all three parameters I can use semicolon.
Your first three "must do" before you ask a question:
Please do not PM me asking for help unless you've been specifically asked to do so. Such PMs will be deleted without answer. (forum rule #6)
Extension for Firefox/Thunderbird: Master Password+    Back/Forward History Tweaks (restartless)    Cookies Manager+    Fit Images (restartless for Thunderbird)