Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeUsing DNN Platf...Using DNN Platf...Skins, Themes, ...Skins, Themes, ...Help with text colorHelp with text color
Previous
 
Next
New Post
12/24/2006 6:51 PM
 
I am trying to modify the colors of the text when in admin mode.  In the control panel and for all of the text with a "?" next to it, it appears in a dark blue.  The general text appears in black. 

How can I modify this?
 
New Post
12/26/2006 3:41 PM
 

There are a couple of classes that affect this area - I believe that is the .normal class but it does not have an active state class assigned to it.

It is the .CommandButton class that is also affects some of the actions in the control panel and the links you see when you are clicking to performa an action that is usually associate with some function like - uploading a file (hence - a CommandButton class)

Check the order in which you put in your active and hover states - it has to follow a specific format -

Link, Visited, Hover & Active state must be defined in this order to work correctly.

Nina Meiers


Nina Meiers My Little Website
If it's on DNN, I fix, build, deploy, support,skin, host, design, consult, implement, integrate and done since 2003.
Who am I? Just a city chic, having a crack at organic berry farming.. and creating awesome websites.
 
New Post
12/28/2006 3:31 PM
 
Okay, now I have got everything in white, including the input text in the search box, the drop down box in the control panel, and the input text for the username and password.  I have pasted my css sheet below if someone can take a look and maybe help me out.

.pagemaster {
    width: 100%;
    height: 100%;  
    background-image: url(yellowbkgd.gif);
    color: WHITE;
}

.normal {
    COLOR: #ffffff;
}

.CommandButton {
    COLOR: #ffffff;
}

A:link {
    COLOR: #ffffff;
}
A:visited {
    COLOR: #ffffff;
}

A:active {
    COLOR: #ffffff;
}

A:hover {
    COLOR: #ffffff;
}

.skinmaster {
    height: 100%;
    background-color: #000033;
    border-right: #FFFFFF 1px solid;
    border-top: #FFFFFF 1px solid;
    border-left: #FFFFFF 1px solid;
    border-bottom: #FFFFFF 1px solid;
    color: black;
    moz-border-radius-bottomleft: 15px;
    moz-border-radius-bottomright: 15px;
    moz-border-radius-topleft: 3px;
    moz-border-radius-topright: 3px;
}
.skinheader {
}
.skingradient {
}

.skinObject {
 color: white;
}
a.skinObject:link {
    text-decoration: none;
    color: white;
}
a.skinObject:visited  {
    text-decoration: none;
    color: white;
}
a.skinObject:hover    {
    text-decoration: none;
    color: Red;
}
a.skinObject:active   {
    text-decoration: none;
    color: white;
}

.controlpanel {
    width: 100%;
    background-image: url(bluebkgd.gif);
    FONT color: black;
}
.toppane {
    color: WHITE;
    width: 100%;
    background-color: transparent;
    padding-left: 6px;
    padding-right: 4px;
    padding-top: 6px;
}
.leftpane {
    color: WHITE;
    width: 175px;
    background-color: transparent;
    padding-left: 6px;
    padding-right: 4px;
    padding-top: 6px;
}
.contentpane {
    color: WHITE;
    width: 100%;
    background-color: transparent;
    padding-left: 6px;
    padding-right: 4px;
    padding-top: 6px;
}
.rightpane {
    color: WHITE;
    width: 175px;
    background-color: transparent;
    padding-left: 6px;
    padding-right: 4px;
    padding-top: 6px;
}
.bottompane {
    color: WHITE;
    width: 100%;
    background-color: transparent;
    padding-left: 6px;
    padding-right: 4px;
    padding-top: 6px;
}
.MainMenu_MenuContainer {
    background-color: transparent;
}
.MainMenu_MenuBar {
    cursor: pointer;
    cursor: hand;
    height:16px;
    background-color: Transparent;
}
.MainMenu_MenuItem {
    color: black;
    border-left: black 0px solid;
    border-bottom: black 1px solid;
    border-top: black 1px solid;
    border-right: black 0px solid;
    cursor: pointer;
    cursor: hand;
    font-size: 10pt;
    font-weight: bold;
    font-style: normal;
    background-color: Transparent;
    font-family: Tahoma, Arial, Helvetica;
}
.MainMenu_MenuIcon {
    color: black;
    background-color: black;
    border-left: black 1px solid;
    border-bottom: black 1px solid;
    border-top: black 1px solid;
    cursor: pointer;
    cursor: hand;
    text-align: center;
    width: 15px;
    height: 21px;
}
.MainMenu_SubMenu {
    background-color: black;
    z-index: 1000;
    cursor: pointer;
    cursor: hand;
    filter:progid:DXImageTransform.Microsoft.Shadow(color='#FFFFFF', Direction=135, Strength=3);
}
.MainMenu_MenuBreak {
    height: 1px;
}
.MainMenu_MenuItemSel {
    background-color: black;
    cursor: pointer;
    cursor: hand;
    color: black;
    font-family: Tahoma, Arial, Helvetica;
    font-size: 9pt;
    font-weight: bold;
    font-style: normal;
    height: 21px;
}
.MainMenu_MenuArrow {
    color: black;
    border-right: #FFFFFF 1px solid;
    border-bottom: #FFFFFF 1px solid;
    border-top: #FFFFFF 0px solid;
    font-family: webdings;
    font-size: 10pt;
    cursor: pointer;
    cursor: hand;
}
.MainMenu_RootMenuArrow {
    font-family: webdings;
    font-size: 10pt;
    cursor: pointer;
    cursor: hand;
}
.StandardButton {
  background: #FFFFFF none;
  color: black;
  font-family: verdana, sans-serif;
  font-size: 11px;
  font-weight: normal;
}
.TreeViewMenu {
    width: 175px;
    background-image: url(bluebkgd.gif);
    border-right: #FFFFFF 1px solid;
    border-top: #FFFFFF 1px solid;
    border-left: #FFFFFF 1px solid;
    border-bottom: #FFFFFF 1px solid;
    color: WHITE;
    moz-border-radius-bottomleft: 15px;
    moz-border-radius-bottomright: 15px;
    moz-border-radius-topleft: 3px;
    moz-border-radius-topright: 3px;
}
.TreeViewMenu_Header {
    background-image: url(bluebkgd.gif);
}
.Head {
   font-family: Tahoma, Arial, Helvetica;
   font-size:  18px;
   font-weight: normal;
   color: black;
}

a:link.PHDTopLinks
{
color: #FFFFFF;
font-weight: bold;
}
a:visited.PHDTopLinks
{
color: #ffffff;
font-weight: bold;
}
a:link:hover.PHDTopLinks, a:visited:hover.PHDTopLinks
{
color: black;
font-weight: bold;
}
a:link:active.PHDTopLinks, a:visited:active.PHDTopLinks
{
color: black;
font-weight: bold;
}

 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Skins, Themes, ...Skins, Themes, ...Help with text colorHelp with text color


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out