color inside box in mediawiki same as box background color

Use this forum to ask questions about how to do things in GuMax skin.
Post Reply
User avatar
krishna
Rank 1
Rank 1
Posts: 9
Joined: April 18th, 2008, 2:11 pm

color inside box in mediawiki same as box background color

Post by krishna »

If you use the monospace font by beginning a line with a space, mediawiki creates a box with a light blue background in it. However, the text has a white background.

(http://www.labautomate.net/hindupedia/i ... e=Overview) for example (at the end of the page)

What do I need to change to make the text background the same as the box background?
User avatar
krishna
Rank 1
Rank 1
Posts: 9
Joined: April 18th, 2008, 2:11 pm

Re: color inside box in mediawiki same as box background color

Post by krishna »

To clarify: this is a problem only in IE 6
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: color inside box in mediawiki same as box background color

Post by Paul »

Your link is not working, can you show me what is this?
User avatar
krishna
Rank 1
Rank 1
Posts: 9
Joined: April 18th, 2008, 2:11 pm

Re: color inside box in mediawiki same as box background color

Post by krishna »

I restructured the site after my post to add a subdirectory since I learned that mediawiki doesn't do well when it resides at the root of the domain (which works for now, but not when we point the domain to /hindupedia...).

The correct URL is:

http://www.labautomate.net/hindupedia/e ... e=Overview
User avatar
Ross
Rank 1
Rank 1
Posts: 5
Joined: November 20th, 2007, 9:09 pm

Re: color inside box in mediawiki same as box background color

Post by Ross »

Open: skins/gumax/gumax_template.css

Look for the following:

Code: Select all

#content {
	border: none;
	background: transparent;
	margin: 0;
Change "Background" to white or whatever color you want:

Code: Select all

#content {
	border: none;
	background: white;
	margin: 0;
Post Reply