see it here:
http://jmcivor.com/portal
its on the left side
I've got the output looking spiffy, but my problem is I cant seem to change the borders of the textbox and the button (second frame) where you type and submit.
both documents rely 100% on a stylesheet. this is what I have been editting.
Here is the stylesheet code thus far:
Code
BODY {
scrollbar-3dlight-color:#4a4942;
scrollbar-arrow-color:#8c7952;
scrollbar-base-color:#4a4942;
scrollbar-track-color:#292c21;
scrollbar-darkshadow-color:#292c21;
scrollbar-face-color:#393831;
scrollbar-highlight-color:#292c21;
scrollbar-shadow-color:#4a4942;
MARGIN-TOP: 1;
MARGIN-LEFT: 1;
MARGIN-RIGHT: 1;
MARGIN-BOTTOM: 1;
BACKGROUND: #292c21;
}
.pn-normal {
BACKGROUND: none;
COLOR: #8c7952;
FONT: 7pt Verdana, Helvetica, sans-serif;
TEXT-DECORATION: none
}
A.pn-normal {
BACKGROUND: none;
COLOR: #d6ae84;
TEXT-DECORATION: underline
}
A.pn-normal:active {
BACKGROUND: none;
COLOR: #d6ae84;
FONT: 8pt Verdana,Helvetica,sans-serif;
TEXT-DECORATION: underline
}
A.pn-normal:visited {
BACKGROUND: none;
COLOR: #d6ae84;
FONT: 8pt Verdana,Helvetica,sans-serif;
TEXT-DECORATION: underline
}
A.pn-normal:hover {
BACKGROUND: none;
COLOR: #d6ae84;
FONT: 8pt Verdana,Helvetica,sans-serif;
TEXT-DECORATION: underline
}
INPUT {
background : #393831;
color: #8c7952;
font-size: 10px;
}
INPUT.pn-text {
BACKGROUND : #393831;
COLOR: #8c7952;
BORDER:solid 1px #000000;
FONT-SIZE: 10pt;
}
INPUT.pn-button {
BACKGROUND : #393831;
COLOR: #8c7952;
BORDER:solid 1px #000000;
FONT-SIZE: 10pt;
border-collapse: collapse
}
scrollbar-3dlight-color:#4a4942;
scrollbar-arrow-color:#8c7952;
scrollbar-base-color:#4a4942;
scrollbar-track-color:#292c21;
scrollbar-darkshadow-color:#292c21;
scrollbar-face-color:#393831;
scrollbar-highlight-color:#292c21;
scrollbar-shadow-color:#4a4942;
MARGIN-TOP: 1;
MARGIN-LEFT: 1;
MARGIN-RIGHT: 1;
MARGIN-BOTTOM: 1;
BACKGROUND: #292c21;
}
.pn-normal {
BACKGROUND: none;
COLOR: #8c7952;
FONT: 7pt Verdana, Helvetica, sans-serif;
TEXT-DECORATION: none
}
A.pn-normal {
BACKGROUND: none;
COLOR: #d6ae84;
TEXT-DECORATION: underline
}
A.pn-normal:active {
BACKGROUND: none;
COLOR: #d6ae84;
FONT: 8pt Verdana,Helvetica,sans-serif;
TEXT-DECORATION: underline
}
A.pn-normal:visited {
BACKGROUND: none;
COLOR: #d6ae84;
FONT: 8pt Verdana,Helvetica,sans-serif;
TEXT-DECORATION: underline
}
A.pn-normal:hover {
BACKGROUND: none;
COLOR: #d6ae84;
FONT: 8pt Verdana,Helvetica,sans-serif;
TEXT-DECORATION: underline
}
INPUT {
background : #393831;
color: #8c7952;
font-size: 10px;
}
INPUT.pn-text {
BACKGROUND : #393831;
COLOR: #8c7952;
BORDER:solid 1px #000000;
FONT-SIZE: 10pt;
}
INPUT.pn-button {
BACKGROUND : #393831;
COLOR: #8c7952;
BORDER:solid 1px #000000;
FONT-SIZE: 10pt;
border-collapse: collapse
}
The last 3 sections, the INPUT sections. These are what I have been editting to affect the input form, I can get the background color to change just fine, but the borders refuse to be removed and/or color changed. they just stay at the newbie looking windows default colors. I'd like to make both the button and the textbox match the color scheme I did with the scrollbar of the tagit box.
Any ideas why this isnt working?
