| View previous topic :: View next topic |
| Author |
Message |
Stryker

Joined: 29 May 2004 Posts: 118 Location: Klamath Falls, Oregon
|
Posted: Mon Jun 28, 2004 10:51 pm Post subject: |
|
|
ahh ok, How does it look without the marginwidth tag since I couldn't find one for css? Also, run your css through http://jigsaw.w3.org/css-validator/
The code I supplied is valid. |
|
| Back to top |
|
 |
nuttzy99 Site Admin

Joined: 23 May 2004 Posts: 1068
|
Posted: Mon Jun 28, 2004 11:02 pm Post subject: |
|
|
Hrmmmm.. doesn't work on Opera but does on the others. Will have to think if I want to be Transitional or functional Could always work some more javascript magic I suppose
-Nuttzy  _________________ <?php echo "something wicked awesome for my sig"; ?> |
|
| Back to top |
|
 |
Stryker

Joined: 29 May 2004 Posts: 118 Location: Klamath Falls, Oregon
|
Posted: Mon Jun 28, 2004 11:30 pm Post subject: |
|
|
Whoops just noticed earlier I posted the code without ; at end. I was using that for reference which if you used that portion it may cause errors!
I edited my post so if you used the earlier sniplet that was on top you need to fix. The botton sniplet I had was correct.
Try adding this to the css... It might replace marginwidth
margin: 0px;
How does that work out? |
|
| Back to top |
|
 |
nuttzy99 Site Admin

Joined: 23 May 2004 Posts: 1068
|
Posted: Tue Jun 29, 2004 8:57 am Post subject: |
|
|
| Stryker wrote: | | margin: 0px; | Still doesn't fix it.
So here's what I decided to do. I will keep the CSS changes that people suggested (need to do some fixes according to the validator though ). However, since CSS alone is not good enough for Opera, then there is no telling how many other browsers will also not work correctly. Keeping those parameters should just be ignored if a browser doesn't understand them. So I decided to leave them there.
But I do want the Transitional tag, so I'm faking out the validator by putting it in javascript Sorry to resort to trickery, but I think I have a legitimate beef
I'll load up the changes once I get the CSS pretty enough
-Nuttzy  _________________ <?php echo "something wicked awesome for my sig"; ?> |
|
| Back to top |
|
 |
Stryker

Joined: 29 May 2004 Posts: 118 Location: Klamath Falls, Oregon
|
Posted: Tue Jun 29, 2004 11:51 am Post subject: |
|
|
Haha, Ya actual browser compatibility is nicer then being transitional but both are preferred!  |
|
| Back to top |
|
 |
nuttzy99 Site Admin

Joined: 23 May 2004 Posts: 1068
|
Posted: Tue Jun 29, 2004 1:20 pm Post subject: |
|
|
| Stryker wrote: | ahh ok, How does it look without the marginwidth tag since I couldn't find one for css? Also, run your css through http://jigsaw.w3.org/css-validator/
The code I supplied is valid. | Hrmmmm... ran it through this, and get this error and warning... | css validator wrote: | Errors
URI : file://localhost/C:\Program Files\EasyPHP1-7\www\phpBB\grammar\phpBB-gram\phpBB2\spell\spell.css
Line: 0 Context : A:active
Invalid number : colorattempt to find a semi-colon before the property name. add it
Warnings
URI : file://localhost/C:\Program Files\EasyPHP1-7\www\phpBB\grammar\phpBB-gram\phpBB2\spell\spell.css
Line : 0 font-family: You are encouraged to offer a generic family as a last alternative |
...not quite sure how to do this though. It says everything else is good though. I'm going to load up my changes now. If you wanted to run the validator against something, the CSS is at... http://www.spellingcow.com/phpBB2/spell/spell.css
-Nuttzy  _________________ <?php echo "something wicked awesome for my sig"; ?> |
|
| Back to top |
|
 |
GPHemsley
Joined: 27 May 2004 Posts: 139 Location: Long Beach, NY
|
Posted: Tue Jun 29, 2004 2:44 pm Post subject: |
|
|
Find:
| Code: | .label {
font-family: Arial, Helvetica; font-size: 10pt;
font-weight: bold;
color: black;
} |
Replace With:
| Code: | .label {
font-family: Verdana, Arial, Helvetica, Tahoma, sans-serif;
font-size: 10pt;
font-weight: bold;
color: black;
} |
Find:
| Code: | A:active {
font-weight:bold; color: #000084
font-weight: bold;
} |
Replace With:
| Code: | A:active {
color: #000084;
font-weight: bold;
} |
In fact, you should probably change all of your "font-family"s to match this:
| Code: | | font-family: Verdana, Arial, Helvetica, Tahoma, sans-serif; |
_________________ Gordon P. Hemsley
A Link to the Past • CMSformE |
|
| Back to top |
|
 |
nuttzy99 Site Admin

Joined: 23 May 2004 Posts: 1068
|
Posted: Tue Jun 29, 2004 2:50 pm Post subject: |
|
|
| GPHemsley wrote: | In fact, you should probably change all of your "font-family"s to match this:
| Code: | | font-family: Verdana, Arial, Helvetica, Tahoma, sans-serif; |
| Ok, what's the reason for doing that though?
-Nuttzy  _________________ <?php echo "something wicked awesome for my sig"; ?> |
|
| Back to top |
|
 |
GPHemsley
Joined: 27 May 2004 Posts: 139 Location: Long Beach, NY
|
Posted: Tue Jun 29, 2004 2:53 pm Post subject: |
|
|
To make everything look the same, and to have multiple backups in case one font is missing.
Whether or not you use that specific example, you should probably make sure all your "font-family"s are the same (as long as you're not doing something specifically different with them).  _________________ Gordon P. Hemsley
A Link to the Past • CMSformE |
|
| Back to top |
|
 |
nuttzy99 Site Admin

Joined: 23 May 2004 Posts: 1068
|
Posted: Tue Jun 29, 2004 3:04 pm Post subject: |
|
|
Okie-doke Thanks for the tip!
-Nuttzy  _________________ <?php echo "something wicked awesome for my sig"; ?> |
|
| Back to top |
|
 |
Stryker

Joined: 29 May 2004 Posts: 118 Location: Klamath Falls, Oregon
|
Posted: Tue Jun 29, 2004 3:13 pm Post subject: |
|
|
Ya thats correct, It's simple just "backup" font's in case the user doesn't have the correct font for some reason.
The other error was just missing a ; _________________ ~!~
Last edited by Stryker on Mon Aug 29, 2005 7:14 am; edited 1 time in total |
|
| Back to top |
|
 |
Scavenger

Joined: 30 Jun 2004 Posts: 12 Location: Montreal-Quebec-Canada
|
Posted: Wed Jun 30, 2004 12:05 pm Post subject: |
|
|
Whoa Nuttzy i love you and your jobs!!
Great job!
I installed it..there is no bugs for me..work fine
Jo _________________ D2jsp Head Scripter.
Blizzhacker old member.
Will become SpellingCow's BIG member. |
|
| Back to top |
|
 |
Pickled_Weasel666

Joined: 28 May 2004 Posts: 104 Location: Oklahoma
|
Posted: Wed Jun 30, 2004 12:22 pm Post subject: |
|
|
Ok, Nuttzy, you don't have to get it working for Opera anymore, I now use Mozilla  _________________
 |
|
| Back to top |
|
 |
nuttzy99 Site Admin

Joined: 23 May 2004 Posts: 1068
|
Posted: Thu Jul 01, 2004 9:49 am Post subject: |
|
|
Wait.... was it not working for Opera? Should be. Works good for me on Opera.
-Nuttzy  _________________ <?php echo "something wicked awesome for my sig"; ?> |
|
| Back to top |
|
 |
Pickled_Weasel666

Joined: 28 May 2004 Posts: 104 Location: Oklahoma
|
Posted: Fri Jul 02, 2004 11:17 am Post subject: |
|
|
| nuttzy99 wrote: | Wait.... was it not working for Opera? Should be. Works good for me on Opera.
-Nuttzy  |
testing...
oh yeah, it's still really messed up. Using opera 7.51 build 3798
The frames are all screwed up. But if it's just me, then it doesn't matter because I use firefox/mozilla. _________________
 |
|
| Back to top |
|
 |
|