Putting the 'role' back in role-playing games since 2002.
Donate to Codex
Good Old Games
  • Welcome to rpgcodex.net, a site dedicated to discussing computer based role-playing games in a free and open fashion. We're less strict than other forums, but please refer to the rules.

    "This message is awaiting moderator approval": All new users must pass through our moderation queue before they will be able to post normally. Until your account has "passed" your posts will only be visible to yourself (and moderators) until they are approved. Give us a week to get around to approving / deleting / ignoring your mundane opinion on crap before hassling us about it. Once you have passed the moderation period (think of it as a test), you will be able to post normally, just like all the other retards.

I'M IN THE DARK HERE

Jigawatt

Arcane
Joined
Aug 13, 2009
Messages
3,409
Location
in a desert, walking along in the sand
In your css for the mce editor (http://www.rpgcodex.net/forums/css.php?style=4&css=editor_contents) you have:
Code:
body,
body.mceForceColors
{
    background: #3F3F3F url('styles/rpgcodex/background.jpg') repeat-y;
    color: #FFFFFF;
 
 
    font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
 
    background-color: ;
 
 
    background-color: ;
 
 
 
 
 
    line-height: 1.4;
 
 
    background-image: none;
 
 
}

which is likely confusing the hell out of IE8. Just rewrite that class to
Code:
body, body.mceForceColors
{
    background-image: none;
    background-color: #3F3F3F;
    color: #FFFFFF;
    font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
    line-height: 1.4;
}
and it should be all good*

*I do not have IE8 and can't test this, but it seems like it should fix it.
 

DarkUnderlord

Professional Throne Sitter
Staff Member
Joined
Jun 18, 2002
Messages
28,362
In your css for the mce editor (http://www.rpgcodex.net/forums/css.php?style=4&css=editor_contents) you have:
Code:
body,
body.mceForceColors
{
    background: #3F3F3F url('styles/rpgcodex/background.jpg') repeat-y;
    color: #FFFFFF;
 
 
    font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
 
    background-color: ;
 
 
    background-color: ;
 
 
 
 
 
    line-height: 1.4;
 
 
    background-image: none;
 
 
}

which is likely confusing the hell out of IE8. Just rewrite that class to
Code:
body, body.mceForceColors
{
    background-image: none;
    background-color: #3F3F3F;
    color: #FFFFFF;
    font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
    line-height: 1.4;
}
and it should be all good*

*I do not have IE8 and can't test this, but it seems like it should fix it.
Actually in XenForo, that part looks like this:
Code:
body,
body.mceForceColors
{
@property "html.background";
background: #3F3F3F url('styles/rpgcodex/background.jpg') repeat-y;
@property "/html.background";
@property "html.font";
color: #FFFFFF;
@property "/html.font";
 
@property "body.background";
 
@property "/body.background";
@property "body.font";
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
@property "/body.font";
 
@property "content.background";
background-color: @contentBackground;
@property "/content.background";
@property "content.font";
 
@property "/content.font";
 
@property "primaryContent.background";
background-color: @contentBackground;
@property "/primaryContent.background";
@property "primaryContent.font";
 
@property "/primaryContent.font";
 
@property "messageInfo.background";
 
@property "/messageInfo.background";
@property "messageInfo.font";
 
@property "/messageInfo.font";
 
@property "messageText";
line-height: 1.4;
@property "/messageText";
 
background-image: none;
 
@property "editorContent";
 
@property "/editorContent";
}
But someone tell me how it looks now...?
 

Forest Dweller

Smoking Dicks
Joined
Oct 29, 2008
Messages
12,213
asjdbkjbskjdcksjdncksbncjksbndjcbhdsjkdncks sjkcbjksdb cm sb jkcs xm xjbb kasd asa

Hmm it seems to be working now. Unfortunately that hasn't really improved my spelling.

Oops sorry wrong account.
 

King Crispy

Too bad I have no queen.
Patron
Staff Member
Joined
Feb 16, 2008
Messages
1,876,723
Location
Future Wasteland
Strap Yourselves In
YES!

pure-joy-thumb1165353.jpg
 

As an Amazon Associate, rpgcodex.net earns from qualifying purchases.
Back
Top Bottom