I have a couple questions…
There are a couple things i am trying to change in a script…
the page is http://www.exegeticacademy.us/testing/
I want to remove the white lines with dots in them… i removed the dot.gif from images folder but still present.
I would like to change the Colored lines… the blue and purple… to another color…
I would like to change the font colors and size inside the blue and purple areas…
Change the title of the page…
If anyone can help… Please… i can repeat process for all pages… just cant figure it all out…
I can provide any codes necessary for help if needed. Below is the PHP and CSS scripts …
[php]<?php
include “./includes/timerhead.php”;
include “./includes/conn.php”;
include “./includes/includes.php”;
include “./includes/nocache.php”;
include “./includes/validation.php”;
session_start();
if ($_SESSION[‘loggedInTest’]==“1”) {
redirect_to(“userArea.php”);
exit;
}
?>
<? // Copyright (C) 2003 - 2007 Eppler Software. All rights reserved. // Any redistribution or reproduction of any materials herein is strictly prohibited. ?> <?php echo (TITLE);?> input.next { margin-top : 1.6em; float : right; } .t {background: url(images/dot.gif) 0 0 repeat-x; width: 20em} .b {background: url(images/dot.gif) 0 100% repeat-x} .l {background: url(images/dot.gif) 0 0 repeat-y} .r {background: url(images/dot.gif) 100% 0 repeat-y} .bl {background: url(images/bl.gif) 0 100% no-repeat} .br {background: url(images/br.gif) 100% 100% no-repeat} .tl {background: url(images/tl.gif) 0 0 no-repeat} .tr {background: url(images/tr.gif) 100% 0 no-repeat; padding:10px} p {font-family: sans-serif; text-align:left} <?php if (DISABLE_PRINT) { ?> @media print { body {display:none} <?php } ?> } <?php if (IPSESSIONS) { $strSQL="SELECT * FROM Sessions WHERE IP='" . $ip . "'"; } else { $strSQL="SELECT * FROM Sessions WHERE ID='" . $sessID . "'"; } // $strSQL="SELECT * From Sessions WHERE IP='" . $ip . "'"; $result=mysql_query($strSQL, $conn) or $myVar=true; if (!isset($myVar)) {
$num_records=mysql_num_rows($result);
$row=mysql_fetch_array($result);
if ($num_records == 0) {
$myVar = true;
} else {
$myVar = false;
}
}
?>
<?php include "./includes/top.php"; ?>
|
<?php if (!$myVar) { ?>
if ($myVar != 1) { <? if ($row[‘AllowQuit’]) { if (!$row[‘review’] and !$quit) { ?> <? } }?> <?php } } ?> |
|||
|
||||
|
[code].t {background: url(…/images/dot.gif) 0 0 repeat-x; width: 20em}
.b {background: url(…/images/dot.gif) 0 100% repeat-x}
.l {background: url(…/images/dot.gif) 0 0 repeat-y}
.r {background: url(…/images/dot.gif) 100% 0 repeat-y}
.bl {background: url(…/images/bl.gif) 0 100% no-repeat}
.br {background: url(…/images/br.gif) 100% 100% no-repeat}
.tl {background: url(…/images/tl.gif) 0 0 no-repeat}
.tr {background: url(…/images/tr.gif) 100% 0 no-repeat; padding:10px}
p {font-family: sans-serif}
.style1 {font-family: Arial, Helvetica, sans-serif}
.style2 {font-family: Arial, Helvetica, sans-serif; font-size: 10px; }
div.hr {
height: 15px;
background: #fff url(…/images/hr.gif) repeat-x scroll center;
}
.style3 {font-weight: bold}
.style4 {
font-size: 36px;
font-weight: bold;
color: #6A92D6;
}
.pointer {
cursor:pointer;
}
div.hr hr {
display: none;
}
.questions_blue {
list-style-type:none;
margin:0;
}
.questions_blue li {
font-family:arial, verdana, sans-serif;
font-size:0.8em;
text-decoration:none;
border : 1px solid #000;
cursor : move;
margin : 0px 0 2px 0;
padding : 0px;
background : #e6e6fa;
border : #ccc;
width : auto;
}
.questions_red {
list-style-type:none;
margin:0;
}
.questions_red li {
font-family:arial, verdana, sans-serif;
font-size:0.8em;
text-decoration:none;
border : 1px solid #000;
cursor : move;
margin : 0px 0 2px 0;
padding : 0px;
background : #FFC1C1;
border : #ccc;
width : auto;
}
#questions {
padding:0;
margin:0;
}
#questions li {
list-style-type:none;
font-family:arial, verdana, sans-serif;
font-size:0.8em;
text-decoration:none;
border : 1px solid #000;
margin : 2px 0 2px 0;
padding : 3px;
background : #f7f7f7;
border : #ccc;
width : auto;
}
#questions a, #questions a:visited {
font-family:arial, verdana, sans-serif;
font-size:0.8em;
text-decoration:none;
}
.style5 {font-size: 12px}
.style7 {font-weight: bold; font-size: 24px;}
tr.d0 {
/* background-color:#E2ECFF; */
background-color:#E2ECFF;
color:#000000;
}
tr.d1 {
background-color:#EBEBEB;
color:#000000;
}
ul{
list-style-type: none;
padding: 0;
margin-left: 0;
}
.answer1 {
font-family:arial, verdana, sans-serif;
}
.answer2 {
font-family:arial, verdana, sans-serif;
}
.answer3 {
font-family:arial, verdana, sans-serif;
}
.answer4 {
font-family:arial, verdana, sans-serif;
}
.answer5 {
font-family:arial, verdana, sans-serif;
}
.answer6 {
font-family:arial, verdana, sans-serif;
}[/code]