problem getting text-color...

Dei,
I cannot get the framecontentLeft text color white…
[php]

For Your Information!!!

body{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%;
max-height: 100%;
}

#framecontentLeft, #framecontentRight{
position: absolute;
top: 0;
left: 0;
width: 200px; /Width of left frame div/
height: 100%;
overflow: hidden; /Disable scrollbars. Set to “scroll” to enable/
background-color: navy;
color: white;
}

#framecontentRight{
left: auto;
right: 0;
width: 150px; /Width of right frame div/
overflow: hidden; /Disable scrollbars. Set to “scroll” to enable/
background-color: navy;

color: white;
}

#maincontent{
position: fixed;
top: 0;
left: 200px; /Set left value to WidthOfLeftFrameDiv/
right: 150px; /Set right value to WidthOfRightFrameDiv/
bottom: 0;
overflow: auto;
background: #20a6fd;
}

.innertube{
margin: 15px; /Margins for inner DIV inside each DIV (to provide padding)/
}

  • html body{ /IE6 hack/
    padding: 0 150px 0 200px; /Set value to (0 WidthOfRightFrameDiv 0 WidthOfLeftFrameDiv)/
    }

  • html #maincontent{ /IE6 hack/
    height: 100%;
    width: 100%;
    }

body {color: #000080; font-size: 120%; font-family:'Lucida Casual', 'Comic Sans MS';} h4 { color: #0000ff; } strong#date {color:#ff0000;} strong {color: #000080;} strong#pot {color: #ffd700;} div#justify {text-align:justify;} div#center {text-align:center;} div#left {text-align:left;} div#right {text-align:right;} a { text-decoration:none; } a:link { color: #00004d; } a:hover { color: #ff0000; }
<?php $pagenames = Array("welcome", "datruth", "drugs", "barack", "citizens", "employment", "government", "contact"); echo ''; foreach($pagenames as $value) { $item= $value. '.php'; ?> <?php echo $value; ?>
<?php } echo ''; ?>

Sample text here


Ahhh... The memories...
Do we really need them, old males??? The young ones are not as slow as you were!!!
1. A robot may not injure a human being or, through inaction, allow a human being to come to harm.
2. A robot must obey the orders given to it by human beings, except where such orders would conflict with the First Law.
3. A robot must protect its own existence as long as such protection does not conflict with the First or Second Law.
0. A robot may not harm humanity, or, by inaction, allow humanity to come to harm.
<?php include "welcome.inc"; ?>

[/php]
Any help would be much appreciated, as I cannot figure it out…
Always,
Jacques P.

Well, CSS is sometimes tricky. In this case, you set up WHITE text for the left side-bar.
But, you didn’t put any text in it. You only placed LINKS in it. In your CSS, you told LINKS to have
a different CSS code.

So, you most likely just have to add a new class for the left side-bar’s links and make the text for
those links WHITE.

Hope that helps…

Sponsor our Newsletter | Privacy Policy | Terms of Service