PDA

View Full Version : Still a problemmatic background color question


EricKonieczny
27th of June 2005 (Mon), 15:33
I know about creating my own pages and have the header still on my page that I have created.

I am adding a few other pages, About Me, Services, Order and others.

I know how to edit the global header, but what is stumping me is where I edit the background color and the Table Color.

Here are my new pages I am trying to edit. As you can see by the code, I have already changed the background color to 4C4C4C, but it shows up as white beacuse it is being controlled by the CSS , ( i think)

http://www.ekreating.com/gallery/buy.php

http://www.ekreating.com/gallery/copyright.php

I am trying to match these pages (and more to come), to the rest of my site using Dark 1 style, the dark Gray.


I have looked at the style sheet dark gray1, and see this code

// GENERAL: page background color
$s_back_color = ee_hexcolorshifter("484848","1.06");

or is there more code I need to edit also. I know the basic "bgcolor= ", does not work beacuse of the color shift.

and i also see this code that is generated for the mainindex page, But i know I can't edit this because it will then change the overall look of the entire EE style sheet.

BODY {
background: #4C4C4C;
color: #cccccc;
font-family: verdana,helvetica,sans-serif;
background-image : none;
background-color : #4C4C4C;
scrollbar-face-color: #5B5B5B;
scrollbar-shadow-color: #353535;
scrollbar-highlight-color: #6A6A6A;
scrollbar-3dlight-color: #626262;
scrollbar-darkshadow-color: #262626;
scrollbar-track-color: #797979;
scrollbar-arrow-color: #EBC475;
Where do I insert the code in my new page . I think I need to do it for Page properities and for table properties.


Is there a way to add a blank page, but still have it use the same style sheet that is defined for the entire EE main gallery style?


Help is appreciated.

Pekka
27th of June 2005 (Mon), 16:10
Take the plain file from http://photography-on-the.net/forum/showthread.php?t=75076 and there change

include ($toroot . "fetchsettings.php");

to

$exhibition = "all";
include ($toroot . "fetchsettings.php");

With that the style is same as in index page. If you wish to give it style of certain exhibition, use the exhibition id of the exhibition, e.g.


$exhibition = "7";
include ($toroot . "fetchsettings.php");

EricKonieczny
27th of June 2005 (Mon), 18:42
Thank You, it was very simple

My site now looks and flows better together

meanmark
13th of August 2005 (Sat), 00:44
Can Some one tell me how to edit the gloabl header. Your help is appreciated.