Page 1 of 1

Theme not working, where is my error? partially solved

PostPosted: Fri Jun 24, 2011 2:11 am
by dba61
I am building a theme and noticed that some of the text didn't change. The links and bold text is ok but in the following areas: Login message, Netwok, More, normal text didn't change. Can someone tell me where I am making my mistake?

Two other questions:

1) How can I modify the left scrollbar so they match?

2) Is it possible to use an @import within the css file to load a special right.jsp with customized Flagcounter and playlist.jsp with customized player for each Theme that I am building so that with each upgrade I don't have to go back and modify each file?

examples: d3dredright.jsp and d3dredplaylist.jsp for this theme or d3dblueright.jsp and d3dblueplaylist.jsp for the other theme I am working on.

Here is a link to my site so you can see what I am talking about.

http://jambox.dyndns.org:4040

Use this to login:
guest
06232011

should loud with a small playlist so someone can help me.

/*
* CSS styleshet for the "D3D Red" theme.
*
* Author: Danny Achenbach (dba61@cox.net)
*
* Image used is released under Creative Commons.
* temp icons from icon folder"still working on new ones"
*/

/*
* background-color = 4B1411 dark red-brown
* textColor = DAA520 gold "bright"
* linkColor = FFD700 goldenrod "dull"
*/

@import "default.css";

/* The primary background color, dark red. Images used to force background on left frame headings and playlist. */
.bgcolor1 {
/* background-image:url( "../icons/d3dred/list_heading.png" );
background-repeat:repeat; */
background-color: #4B1411;
}

/* The secondary background color, mid section, primary theme color. */
.bgcolor2, .ruleTableHeader, .log {

background-color: #4B1411;
}

/* Background for selected headers. */
.headerSelected {
/* background-image:url( "../icons/d3dred/home_hover.png" );
background-repeat:repeat; */

color: #4B1411;
}


/* Foreground color used for h1, h2, b, tr, details and albumcomments. */
h1, h2, b, b2, tr, .detail, .albumComment {

color: #DAA520;

}

/* Table sizing */
table {
font-size: 100%;
line-height: 130%;
padding: 0;
border: 0;
margin: 0 0 0 0;
}

/* Main frame image & color */
.mainframe {
background-image:url( "../icons/d3dred/background_main.png" );
background-repeat:no-repeat;
background-attachment:fixed;
background-color: #4B1411;
background-position:right;
}

/* Right frame background. */
.rightframe {

background-color: #4B1411;
background-image:none;
}

/* Back image */
.back {
background-image:url( "../icons/d3dred/back.png" );
}

/* Forward image */
.forward {
background-image:url( "../icons/d3dred/forward.png" );
}

/* Link color */
a:link, a:active, a:visited, a:link *, a:active *, a:visited * {

color: #DAA520;
}

/* Link hover color */
a:hover, a:hover * {

text-decoration: underline;
color: #FFD700;
}

/* Color for warning messages. */
.warning {
color: #FF020B;
}

/* The primary foreground color. */
body {
background-color: #4B1411;
scrollbar-face-color: #4B1411;
scrollbar-highlight-color: #FFD700;
scrollbar-shadow-color: #4B1411;
scrollbar-3dlight-color: #DAA520;
scrollbar-arrow-color: #DAA520;
scrollbar-track-color: #4B1411;
scrollbar-darkshadow-color: #4B1411;
}

/* The album comments. */
.albumComment {
width: 50em;
font-size: 8pt;
line-height: 1.4em;
padding-top: 0.25em;
}

/* The log. */
.log {
font-weight: bold;
white-space: nowrap;
font-size: 8pt;
line-height: 1em;
}

/* The help, status & web payer settings tables. */
.ruleTableHeader, .ruleTableCell {
margin: 5px;
padding: 5px;
}

PostPosted: Thu Jun 30, 2011 12:24 am
by moisy
Hey ya dba61, ignore my post to you....I didn't read your previous post....so I was miles out on what you wanted lol......sorry mate, my fault its nearly 1.30am, so I should just go to bed ....:-)

PostPosted: Thu Jun 30, 2011 3:03 pm
by dba61
moisy wrote:Hey ya dba61, ignore my post to you....I didn't read your previous post....so I was miles out on what you wanted lol......sorry mate, my fault its nearly 1.30am, so I should just go to bed ....:-)



Thank you trying to help Mark. Thank you also for the compliment on my theme. I hope to have the last of my icons done this week and once I get all the text working I will try to post it for others to use.

Danny

PostPosted: Sun Jul 03, 2011 1:40 am
by dba61
dba61 wrote:
moisy wrote:Hey ya dba61, ignore my post to you....I didn't read your previous post....so I was miles out on what you wanted lol......sorry mate, my fault its nearly 1.30am, so I should just go to bed ....:-)



Thank you trying to help Mark. Thank you also for the compliment on my theme. I hope to have the last of my icons done this week and once I get all the text working I will try to post it for others to use.

Danny


Ok I have solved part of my problem. After doing some reading about CSS and trying numerous things using the following command it finally worked. Now I just have to figure out why my Theme needs this statement when others do not. I hope to get my icons finished this weekend then I will upload it.

body {
color: #DAA520;
}