1

Topic: css questions

Hi,

I just noticed that 1.7 only exists in cobalt_cs.css, mercury_cs.css and radium_cs.css
It does not exist in other styles. Why?
I have a very small customisation problem and I am wondering if it's not due to it.
Indeed, I noticed that in my pages, what I thought to be white is not really.
I explain:
On http://www.pluriservices.net , with oxygen style for example, I put for google ads a white background. This has made me noticed that the box where the ad is is not really white. It's a little bit darker. I want it to be the same color but do not find in the css.

Don't know if I really well explained...

Ludo,

2

Re: css questions

1.7 isn't needed by the other styles because they just use the browser default.

3 (edited by Ludo 2005-04-27 15:44)

Re: css questions

OK.
And for example, could you give me the color used by the footer with oxygen? with lithium? and with sulfur?

Ludo,

Re: css questions

just look at the css, or get a image editor and get the hex code from the screenshot

5

Re: css questions

I think it's 'inbox' isn't it?

Ludo,

6

Re: css questions

/* 1.1 Default background colour and text colour */

body {background-color: #fff}

.pun {color: #333}

div.box, .pun blockquote, div.codebox, #adminconsole fieldset th {background-color: #f1f1f1}
#adminconsole td, #adminconsole th {border-color: #f1f1f1}

Everything gets that colour unless the stylesheet says otherwise. It is set on div.box.

Does this make it clearer

/****************************************************************/
/* 1. BACKGROUND AND TEXT COLOURS */
/****************************************************************/

/* 1.1 Default background colour and text colour */

body {background-color: #fff} /*screen background*/

.pun {color: #333} /* all normal text */


/* 1.2 Background of main board elements - pale grey by default */

div.box {background-color: #f1f1f1} /* everything unless otherwise specified */

.pun blockquote, div.codebox {background-color: #f1f1f1} /* code and quote boxes in posts */


/* 1. 2 Darker background colour - medium grey */

td.tc2, td.tc3, td.tcmod {background-color: #dedfdf} /* darker columns in tables */

#postpreview {background-color: #dedfdf} /* post preview */

#viewprofile dd {background-color: #dedfdf} /* right hand part of information about other users in profile */

div.forminfo {background-color: #dedfdf} /* the information box at the top of some forms e.g. registration */

div.blockmenu div.box {background-color: #dedfdf} /* the vertical menu in profile and admin */


/* 1.3 Main headers and navigation bar background and text colour - bright blue */

.pun h2 {background-color: #0066b9; color: #fff} /* header rows */

#brdmenu {background-color: #0066b9; color: #fff} /* main navigation menu */


/* 1.4 Table header rows i.e. the slightly darker row for column headings */

.pun th {background-color: #d1d1d1}


/* 1.5 Fieldset legend text colour */

.pun legend {color: #005cb1}


/* 1.6 Highlighted text for various items */

.pun div.blockmenu li.isactive a {color: #333} /* link colour for verticial menus showing active page */

#posterror li strong {color: #333} /* text colour for error messages generated by invalid posts */

/* 1.7 Admin console colours */

#adminconsole fieldset th, #adminconsole td, #adminconsole th {border-color: #f1f1f1} /* pale grey background */
#adminconsole fieldset td, #adstats dd {background-color: #dedfdf} 

/****************************************************************/
/* 2. POST BACKGROUNDS AND TEXT */
/****************************************************************/

/* 2.1 The darker colour for the right hand part of posts. */

div.blockpost div.box, div.postright, div.postfootright {background-color: #dedfdf}

/*2.2 The lighter colour for the left hand part of posts - both colour values must be the same */
div.postright, div.postfootright {border-left-color: #f1f1f1}
div.postleft, div.postfootleft, div.blockpost label {background-color: #f1f1f1}

/* 2.3 Background for post headers - the blue top part of posts */

div.blockpost h2 {background-color: #006fc9}


/* 2.4 the text colour for post numbers */

div.blockpost h2 span.conr {color: #aabdcd}


/* 2.5 This is the line above the signature in posts. Colour and background should be the same */

.pun hr {background-color: #333; color: #333}

7

Re: css questions

Connorhd wrote:

just look at the css, or get a image editor and get the hex code from the screenshot

This is a great tool for Windows to get the hex codes from colors:

http://www.iconico.com/colorpic/index.aspx

8

Re: css questions

My favourite colour picker is cpick. Also a freebie
http://home.hccnet.nl/s.j.francke/software/software.htm

9

Re: css questions

Paul wrote:

Does this make it clearer

Yes it makes. I've solved my problem. The colour code I was looking for was F1F1F1.
I thank you Paul.

Ludo,