Author |
Message |
thesportsvoice
Client
![](modules/Forums/images/avatars/gallery/blank.gif)
Joined: Feb 26, 2004
Posts: 115
|
Posted:
Sun May 02, 2004 12:32 pm |
|
How do I get rid of the dark black background behind the selction boxes (poll options, vote button, go button, ect...)? |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
GanjaUK
Life Cycles Becoming CPU Cycles
![](modules/Forums/images/avatars/gallery/blank.gif)
Joined: Feb 14, 2004
Posts: 633
Location: England
|
Posted:
Sun May 02, 2004 1:28 pm |
|
It will work the same as your other theme. All the table colours will be in the theme.php or if the theme uses html files like blocks.html the colour will be in there. |
_________________ Only registered users can see links on this board! Get registered or login! |
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
thesportsvoice
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun May 02, 2004 7:40 pm |
|
Where in the theme.php is the "showdow boxes"?
Code:
<?php
/************************************************************/
/* Theme Name: subBlack3d */
/* Theme Design: cryptout (www.corputty.com) */
/* Converted to Nuke6.5 by mikem http://www.nukemods.com */
/* Theme inspired by the phpbb2 style subBlack3d by */
/* Wira CG (http://myforum.iwebland.com/) */
/* version 3.0 */
/* */
/* Copyright Notice */
/* - THIS PACKAGE IS NOT RELEASED AS GPL/GNU SCRIPTING. */
/* - Our Package name and link MUST REMAIN in the credit */
/* footer of all Nuke generated pages. */
/* Translations are permitted, not renaming. */
/* - This package CAN NOT be ported without written */
/* permission. */
/* - This package CAN NOT be mirrored without written */
/* permission. */
/* - Use of this package requires that credits to the */
/* original PHPNuke remain in all site generated */
/* page footers. */
/* */
/************************************************************/
/************************************************************/
/* Theme Colors Definition */
/* */
/* Define colors for your web site. $bgcolor2 is generaly */
/* used for the tables border as you can see on OpenTable() */
/* function, $bgcolor1 is for the table background and the */
/* other two bgcolor variables follows the same criteria. */
/* $texcolor1 and 2 are for tables internal texts */
/************************************************************/
$bgcolor1 = "4A4A4A";
$bgcolor2 = "383838";
$bgcolor3 = "383838";
$bgcolor4 = "4A4A4A";
$textcolor1 = "#FFCC00";
$textcolor2 = "#FFCC00";
include("themes/subBlack3d/tables.php");
/************************************************************/
/* Function themeheader() */
/* */
/* Control the header for your site. You need to define the */
/* BODY tag and in some part of the code call the blocks */
/* function for left side with: blocks(left); */
/************************************************************/
function themeheader() {
global $admin, $user, $banners, $sitename, $slogan, $cookie, $prefix, $db, $nukeurl, $anonymous;
if ($banners == 1) {
$numrows = $db->sql_numrows($db->sql_query("SELECT * FROM ".$prefix."_banner WHERE type='0' AND active='1'"));
/* Get a random banner if exist any. */
/* More efficient random stuff, thanks to Cristian Arroyo from http://www.planetalinux.com.ar */
if ($numrows>1) {
$numrows = $numrows-1;
mt_srand((double)microtime()*1000000);
$bannum = mt_rand(0, $numrows);
} else {
$bannum = 0;
}
$sql = "SELECT bid, imageurl, clickurl, alttext FROM ".$prefix."_banner WHERE type='0' AND active='1' LIMIT $bannum,1";
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$bid = $row[bid];
$imageurl = $row[imageurl];
$clickurl = $row[clickurl];
$alttext = $row[alttext];
if (!is_admin($admin)) {
$db->sql_query("UPDATE ".$prefix."_banner SET impmade=impmade+1 WHERE bid='$bid'");
}
if($numrows>0) {
$sql2 = "SELECT cid, imptotal, impmade, clicks, date FROM ".$prefix."_banner WHERE bid='$bid'";
$result2 = $db->sql_query($sql2);
$row2 = $db->sql_fetchrow($result2);
$cid = $row2[cid];
$imptotal = $row2[imptotal];
$impmade = $row2[impmade];
$clicks = $row2[clicks];
$date = $row2[date];
/* Check if this impression is the last one and print the banner */
if (($imptotal <= $impmade) AND ($imptotal != 0)) {
$db->sql_query("UPDATE ".$prefix."_banner SET active='0' WHERE bid='$bid'");
$sql3 = "SELECT name, contact, email FROM ".$prefix."_bannerclient WHERE cid='$cid'";
$result3 = $db->sql_query($sql3);
$row3 = $db->sql_fetchrow($result3);
$c_name = $row3[name];
$c_contact = $row3[contact];
$c_email = $row3[email];
if ($c_email != "") {
$from = "$sitename <$adminmail>";
$to = "$c_contact <$c_email>";
$message = ""._HELLO." $c_contact:\n\n";
$message .= ""._THISISAUTOMATED."\n\n";
$message .= ""._THERESULTS."\n\n";
$message .= ""._TOTALIMPRESSIONS." $imptotal\n";
$message .= ""._CLICKSRECEIVED." $clicks\n";
$message .= ""._IMAGEURL." $imageurl\n";
$message .= ""._CLICKURL." $clickurl\n";
$message .= ""._ALTERNATETEXT." $alttext\n\n";
$message .= ""._HOPEYOULIKED."\n\n";
$message .= ""._THANKSUPPORT."\n\n";
$message .= "- $sitename "._TEAM."\n";
$message .= "$nukeurl";
$subject = "$sitename: "._BANNERSFINNISHED."";
mail($to, $subject, $message, "From: $from\nX-Mailer: PHP/" . phpversion());
}
}
$showbanners = "<a href=\"banners.php?op=click&bid=$bid\" target=\"_blank\"><img src=\"$imageurl\" border=\"0\" alt='$alttext' title='$alttext'></a> ";
}
}
cookiedecode($user);
$username = $cookie[1];
if ($username == "") {
$username = "Anonymous";
}
echo "<body bgcolor=\"#333333\" text=\"#FFFFCC\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">";
if ($username == "Anonymous") {
$theuser = " <a href=\"account.html\">"._LOGIN."</a> or <a href=\"account-new_user.html\">"._BREG."</a>";
} else {
$theuser = " "._BWEL." $username!";
}
$datetime = "<script type=\"text/javascript\">\n\n"
."<!-- // Array ofmonth Names\n"
."var monthNames = new Array( \""._JANUARY."\",\""._FEBRUARY."\",\""._MARCH."\",\""._APRIL."\",\""._MAY."\",\""._JUNE."\",\""._JULY."\",\""._AUGUST."\",\""._SEPTEMBER."\",\""._OCTOBER."\",\""._NOVEMBER."\",\""._DECEMBER."\");\n"
."var now = new Date();\n"
."thisYear = now.getYear();\n"
."if(thisYear < 1900) {thisYear += 1900}; // corrections if Y2K display problem\n"
."document.write(monthNames[now.getMonth()] + \" \" + now.getDate() + \", \" + thisYear);\n"
."// -->\n\n"
."</script>";
$public_msg = public_message();
$tmpl_file = "themes/subBlack3d/header.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
blocks(left);
$tmpl_file = "themes/subBlack3d/left_center.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
}
/************************************************************/
/* Function themefooter() */
/* */
/* Control the footer for your site. You don't need to */
/* close BODY and HTML tags at the end. In some part call */
/* the function for right blocks with: blocks(right); */
/* Also, $index variable need to be global and is used to */
/* determine if the page your're viewing is the Homepage or */
/* and internal one. */
/************************************************************/
function themefooter() {
global $index, $foot1, $foot2, $foot3, $foot4;
if ($index == 1) {
$tmpl_file = "themes/subBlack3d/center_right.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
blocks(right);
}
// PLEASE DO NOT TOUCH THE NEXT LINE(s).
// YOU CAN ONLY ADD TO IT IF YOU MODIFY THIS THEME :-)
echo "</td></tr></table>\n";
echo"</td>\n"
. "</table>\n"
. "<body>\n"
. "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"7\">\n"
. " <tr>\n"
. " <td><table width=\"100%\" border=\"0\" cellpadding=\"1\" cellspacing=\"0\" bgcolor=\"4A4A4A\">\n"
. " <tr>\n"
. " <td><table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" bgcolor=\"333333\">\n"
. " <tr>\n"
. " <td><table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n"
. " <tr>\n"
. " <td>\n"
. " <table width=\"99%\" border=\"0\" align=\"center\" cellpadding=\"7\" cellspacing=\"0\">\n"
. " <tr>\n"
. " <td><div align=\"center\"><font class=\"small\">\n";
footmsg();
echo"</font></div></td>"
. " </tr>\n"
. " </table></td>\n"
. " </tr>\n"
. " <tr>\n"
. " <td height=\"15\"><div align=\"center\"><font class=\"small\">:: subBlack3d phpbb2 style by <a href=\"http://myforum.iwebland.com/\">Wira CG</a> :: PHP-Nuke theme by <a href=\"http://www.nukemods.com\">nukemods.com</a> ::</font></div></td>"
. " </tr>\n"
. " </table></td>\n"
. " </tr>\n"
. " </table></td>\n"
. " </tr>\n"
. " </table></td>\n"
. " </tr>\n"
. "</table>\n";
}
/************************************************************/
/* Function themeindex() */
/* */
/* This function format the stories on the Homepage */
/************************************************************/
function themeindex ($aid, $informant, $time, $title, $counter, $topic, $thetext, $notes, $morelink, $topicname, $topicimage, $topictext) {
global $anonymous, $tipath;
if ($notes != "") {
$notes = "<br><br><b>"._NOTE."</b> <i>$notes</i>\n";
} else {
$notes = "";
}
if ("$aid" == "$informant") {
$content = "$thetext$notes\n";
} else {
if($informant != "") {
$content = "<a href=\"modules.php?name=Your_Account&op=userinfo&username=$informant\">$informant</a> ";
} else {
$content = "$anonymous ";
}
$content .= ""._WRITES." <i>\"$thetext\"</i>$notes\n";
}
$posted = ""._POSTEDBY." ";
$posted .= get_author($aid);
$posted .= " "._ON." $time $timezone ($counter "._READS.")";
$tmpl_file = "themes/subBlack3d/story_home.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
}
/************************************************************/
/* Function themearticle() */
/* */
/* This function format the stories on the story page, when */
/* you click on that "Read More..." link in the home */
/************************************************************/
function themearticle ($aid, $informant, $datetime, $title, $thetext, $topic, $topicname, $topicimage, $topictext) {
global $admin, $sid, $tipath;
$posted = ""._POSTEDON." $datetime "._BY." ";
$posted .= get_author($aid);
if ($notes != "") {
$notes = "<br><br><b>"._NOTE."</b> <i>$notes</i>\n";
} else {
$notes = "";
}
if ("$aid" == "$informant") {
$content = "$thetext$notes\n";
} else {
if($informant != "") {
$content = "<a href=\"modules.php?name=Your_Account&op=userinfo&username=$informant\">$informant</a> ";
} else {
$content = "$anonymous ";
}
$content .= ""._WRITES." <i>\"$thetext\"</i>$notes\n";
}
$tmpl_file = "themes/subBlack3d/story_page.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
}
/************************************************************/
/* Function themesidebox() */
/* */
/* Control look of your blocks. Just simple. */
/************************************************************/
function themesidebox($title, $content) {
$tmpl_file = "themes/subBlack3d/blocks.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
}
?>
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
GanjaUK
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun May 02, 2004 7:55 pm |
|
Oh wait, you are talking about the actual buttons, and radio check boxes? I misunderstood to start with. Those are controlled in your style.css |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
thesportsvoice
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon May 03, 2004 10:33 am |
|
GanjaUK wrote: | Oh wait, you are talking about the actual buttons, and radio check boxes? I misunderstood to start with. Those are controlled in your style.css |
Yeah the background behind it, on the top has a solid black line I want to get rid of it cause I think it will look cleaner. Do you know what its title as? |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
thesportsvoice
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon May 03, 2004 10:34 am |
|
Here is my style.css
Code:FONT { FONT-FAMILY: Verdana,Helvetica; FONT-SIZE: 10px}
TD { FONT-FAMILY: Verdana,Helvetica; FONT-SIZE: 10px}
BODY { FONT-FAMILY: Verdana,Helvetica; FONT-SIZE: 10px}
P { FONT-FAMILY: Verdana,Helvetica; FONT-SIZE: 10px}
DIV { FONT-FAMILY: Verdana,Helvetica; FONT-SIZE: 10px}
body { background-image: url(../images/bg.gif);
background-color: #333333;
scrollbar-face-color:#3F3F3F;
scrollbar-highlight-color:#666666;
scrollbar-shadow-color:#111111;
scrollbar-3dlight-color:#777777;
scrollbar-arrow-color:#777777;
scrollbar-track-color:#333333;
scrollbar-darkshadow-color:#111111;}
FORM { FONT-FAMILY: Verdana,Helvetica; FONT-SIZE: 10px}
font,td,th,p { font-family: Verdana, Arial, Helvetica, sans-serif; color : #FFFFFF; font-size: 10px }
a:link,a:active,a:visited { text-decoration: none;color : #FBC300; font-size: 10px }
a:hover { text-decoration: none; color : #DDDDDD; font-size: 10px }
hr { height: 1px; border: solid #DDDDDD 1px; border-top-width: 1px;}
.title {BACKGROUND: none; COLOR: #FFFFCC; FONT-SIZE: 14px; FONT-WEIGHT: bold; FONT-FAMILY: Verdana, Helvetica; TEXT-DECORATION: none}
.content {BACKGROUND: none; COLOR: #FFFFCC; FONT-SIZE: 10px; FONT-FAMILY: Verdana, Helvetica}
.block-title {BACKGROUND: none; COLOR: #F6A801; FONT-SIZE: 10px; FONT-FAMILY: Verdana, Helvetica}
.storytitle {BACKGROUND: none; COLOR: #FBC300; FONT-SIZE: 10px; FONT-WEIGHT: bold; FONT-FAMILY: Verdana, Helvetica; TEXT-DECORATION: none}
.storycat {BACKGROUND: none; COLOR: #FFFFCC; FONT-SIZE: 10px; FONT-WEIGHT: bold; FONT-FAMILY: Verdana, Helvetica; TEXT-DECORATION: underline}
.boxtitle {BACKGROUND: none; COLOR: #FFFFCC; FONT-SIZE: 10px; FONT-WEIGHT: bold; FONT-FAMILY: Verdana, Helvetica; TEXT-DECORATION: none}
.boxcontent {BACKGROUND: none; COLOR: #FFFFCC; FONT-SIZE: 10px; FONT-FAMILY: Verdana, Helvetica}
.option {BACKGROUND: none; COLOR: #FFFFCC; FONT-SIZE: 10px; FONT-WEIGHT: bold; FONT-FAMILY: Verdana, Helvetica; TEXT-DECORATION: none}
.tiny {BACKGROUND: none; COLOR: #FFFFCC; FONT-SIZE: 10px; FONT-WEIGHT: normal; FONT-FAMILY: Verdana, Helvetica; TEXT-DECORATION: none}
.small {BACKGROUND: none; COLOR: #FFFFCC; FONT-SIZE: 9px; FONT-WEIGHT: normal; FONT-FAMILY: Verdana, Helvetica; TEXT-DECORATION: none}
/* Form elements */
input,textarea, select {
BACKGROUND-IMAGE: url(images/bgin.gif); background-color: #575656; border-bottom: #cccccc 1px outset; border-left: #000000 1px outset; border-right: #999999 1px outset; border-top: #000000 4px outset; COLOR: #bbbbbb; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif; FONT-SIZE: 11px
}
/* The text input fields background colour */
input.post, textarea.post, select {
background-color : #575656;
}
input { text-indent : 2px; }
/* The buttons used for bbCode styling in message post */
input.button {
background-color : #3a3a3a;
color : #DDDDDD;
font-size: 10px; font-family: Verdana, Arial, Helvetica, sans-serif;
}
/* The main submit button option */
input.mainoption {
background-color : #3a3a3a;
font-weight : bold;
}
/* None-bold submit button */
input.liteoption {
background-color : #3a3a3a;
font-weight : normal;
}
.helpline {
background-color: #555555; border-style: none;
}
.code {
font-family: Courier, 'Courier New', sans-serif; font-size: 10px; color: #DDDDDD;
background-color: #545454;
border-bottom: #AAAAAA 1px solid; border-left: #000000 0px solid; border-right: #000000 0px solid; border-top: #AAAAAA 1px solid;
}
.quote {
font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; color: #CCCCCC; line-height: 100%;
background-color: #545454;
border-bottom: #999999 1px solid; border-left: #000000 0px solid; border-right: #000000 0px solid; border-top: #999999 1px solid;
}
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
GanjaUK
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon May 03, 2004 10:43 am |
|
/* Form elements */
#000000 is black so anywhere that is... |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
thesportsvoice
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon May 03, 2004 12:23 pm |
|
GanjaUK wrote: | /* Form elements */
#000000 is black so anywhere that is... |
What if I wanna delete the "border" behind the buttons? I've edit the colors but I think it would look better if I delete the whole thing behind it. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
GanjaUK
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon May 03, 2004 12:59 pm |
|
Then just remove the border elements from the css. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
thesportsvoice
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon May 03, 2004 1:03 pm |
|
GanjaUK wrote: | Then just remove the border elements from the css. |
Well I still want to maintain a border since it would be hard to distingush the button. I basically want it to look like I have it on www.thesportsvoice.com just a small line border around the button and no shawdow behind the poll options.
I guess i can check it the file on the other site and see if I can match it up. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
thesportsvoice
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon May 03, 2004 1:07 pm |
|
OK there is a few difference between the two.
The Sports Voice
Code:/* Form elements */
input{border-color: #000000; color:#000000; background-color: #EAEDF4; font:normal 11px Verdana,Arial,Helvetica,sans-serif;border-width: 1px 1px 1px 1px}
textarea{border-color: #000000; color:#000000; background-color: #EAEDF4; font:normal 11px Verdana,Arial,Helvetica,sans-serif;border-width: 1px 1px 1px 1px}
select{border-color: #000000; color:#000000; font:normal 11px Verdana,Arial,Helvetica,sans-serif}
|
5GCivic
Code:/* Form elements */
input,textarea, select {
BACKGROUND-IMAGE: url(images/bgin.gif); background-color: #575656; border-bottom: #cccccc 1px outset; border-left: #575656 1px outset; border-right: #999999 1px outset; border-top: #575656 4px outset; COLOR: #bbbbbb; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif; FONT-SIZE: 11px
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
GanjaUK
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon May 03, 2004 1:15 pm |
|
I would try something like:
Code:
/* Form elements */
input{border-color: #000000; color:#000000; font:normal 11px Verdana,Arial,Helvetica,sans-serif;border-width: 1px 1px 1px 1px}
textarea{border-color: #000000; color:#000000; font:normal 11px Verdana,Arial,Helvetica,sans-serif;border-width: 1px 1px 1px 1px}
select{border-color: #000000; color:#000000; font:normal 11px Verdana,Arial,Helvetica,sans-serif}
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
thesportsvoice
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon May 03, 2004 1:27 pm |
|
Nice that worked! Now when I change that it also changes the background color for a few section from the grey/orange combo to white/black. I'd tried changed the colors in the Form elements but I cant get the white background to the grey that it was. Any idea how to get that back to where it was?
example section http://www.5gcivic.com/modules.php?name=Reviews&rop=write_review |
Last edited by thesportsvoice on Mon May 03, 2004 1:37 pm; edited 1 time in total |
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
GanjaUK
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon May 03, 2004 1:36 pm |
|
Code:
/* Form elements */
input{BACKGROUND-IMAGE: url(images/bgin.gif); border-color: #000000; color:#000000; font:normal 11px Verdana,Arial,Helvetica,sans-serif;border-width: 1px 1px 1px 1px}
textarea{BACKGROUND-IMAGE: url(images/bgin.gif); border-color: #000000; color:#000000; font:normal 11px Verdana,Arial,Helvetica,sans-serif;border-width: 1px 1px 1px 1px}
select{BACKGROUND-IMAGE: url(images/bgin.gif); border-color: #000000; color:#000000; font:normal 11px Verdana,Arial,Helvetica,sans-serif}
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
thesportsvoice
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon May 03, 2004 1:39 pm |
|
I pluged that in and still the same... ![Confused](modules/Forums/images/smiles/icon_confused.gif) |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
GanjaUK
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon May 03, 2004 1:45 pm |
|
Try:
Code:
/* Form elements */
input{BACKGROUND-IMAGE: url(images/bgin.gif); border-color: #000000; color:#000000; font:normal 11px Verdana,Arial,Helvetica,sans-serif;border-width: 1px 1px 1px 1px}
textarea{BACKGROUND-IMAGE: url(images/bgin.gif); background-color: #575656; border-color: #000000; color:#000000; font:normal 11px Verdana,Arial,Helvetica,sans-serif;border-width: 1px 1px 1px 1px}
select{BACKGROUND-IMAGE: url(images/bgin.gif); border-color: #000000; color:#000000; font:normal 11px Verdana,Arial,Helvetica,sans-serif}
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
thesportsvoice
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon May 03, 2004 1:48 pm |
|
Still the same |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
GanjaUK
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon May 03, 2004 1:50 pm |
|
Its not still the same. The text area is no longer white, you need to refresh your browser to see the changes. If you dont want input fields white either, then change it to this:
Code:
/* Form elements */
input{BACKGROUND-IMAGE: url(images/bgin.gif); background-color: #575656; border-color: #000000; color:#000000; font:normal 11px Verdana,Arial,Helvetica,sans-serif;border-width: 1px 1px 1px 1px}
textarea{BACKGROUND-IMAGE: url(images/bgin.gif); background-color: #575656; border-color: #000000; color:#000000; font:normal 11px Verdana,Arial,Helvetica,sans-serif;border-width: 1px 1px 1px 1px}
select{BACKGROUND-IMAGE: url(images/bgin.gif); border-color: #000000; color:#000000; font:normal 11px Verdana,Arial,Helvetica,sans-serif}
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
thesportsvoice
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon May 03, 2004 1:59 pm |
|
There we go!!! Now the last thing is that the shadow boxes behind the "radio" buttons are back, can I keep everything the same and get rid of that? ![Question](modules/Forums/images/smiles/icon_question.gif) |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
GanjaUK
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon May 03, 2004 2:05 pm |
|
Code:
/* Form elements */
input{BACKGROUND-IMAGE: url(images/bgin.gif); background-color: #4A4A4A; border-color: #000000; color:#000000; font:normal 11px Verdana,Arial,Helvetica,sans-serif;border-width: 1px 1px 1px 1px}
textarea{BACKGROUND-IMAGE: url(images/bgin.gif); background-color: #4A4A4A; border-color: #000000; color:#000000; font:normal 11px Verdana,Arial,Helvetica,sans-serif;border-width: 1px 1px 1px 1px}
select{BACKGROUND-IMAGE: url(images/bgin.gif); border-color: #000000; color:#000000; font:normal 11px Verdana,Arial,Helvetica,sans-serif}
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
thesportsvoice
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon May 03, 2004 2:07 pm |
|
What part of that is the text color?, i want to change that to the orange color I have on the site. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
GanjaUK
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon May 03, 2004 2:10 pm |
|
I would add:
in the font section. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
thesportsvoice
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon May 03, 2004 2:37 pm |
|
GanjaUK wrote: | I would add:
in the font section. |
could you show me how the full code would be with that. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
GanjaUK
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon May 03, 2004 4:18 pm |
|
Code:FONT-FAMILY: Verdana,Helvetica,Helvetica,sans-serif; FONT-SIZE: 11px; COLOR: #FBC300;
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
|