Advertisement

09.07.2008 at 11:40AM PDT, ID: 23710438
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.1

Change text box style CSS

Asked by introlux in Cascading Style Sheets (CSS)

Tags:

Hi,

I am having problems when inserting new text boxes. They display in white with no surrounding. So when background is set to white, you cannot see the tet boxes.

Any idea why this is?? I have attached CSS file and the class that I believe I am using is boxContent.

Can you please help code a method of seeing the outline of the text boxes.

Regtards,

introluxStart Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
/**
 * Copyright (c) 2008 ClanTemplates.com
 * Digitalism; a free template by George at ClanTemplates.com
 * No part of this file may be redistributed without written permission
 * Designed by George <George@Pinkvolt.com>
 * Coded by HarZens <ventas@harzens.com.ar>
 * http://www.clantemplates.com/pages/Legal
 */
* {
	margin: 0;
	padding: 0;
	border: 0;
}
 
body {
	background-color: #140802;
	font-family: Verdana;
	font-size: 11px;
	color: #140802;
}
 
ul, ol {
	list-style: none;
}
 
ul li {
	padding:1px 0px;
}
 
a {
	color: #3E6F32;
}
 
a:hover {
	text-decoration:none;
}
 
p {
	padding:5px 0px;
}
 
h2 {
	font-size: 18px;
}
 
#wrap {
	width: 911px;
	padding: 4px 6px 0px;
	background-color: #FFF;
	margin: 0 auto;
}
 
#menu {
	padding-left: 16px;
	line-height: 48px;
	background-image: url('./images/menuBg.jpg');
	background-position: center top;
	background-repeat: no-repeat;
	height: 48px;
}
 
#menu ol li {
	float: left;
}
 
#menu ol li a {
	text-decoration: none;
	font-weight: bold;
	display: block;
	line-height: 48px;
	padding: 0 20px;
	color: #FFF;
}
 
#menu ol li a:hover {	
	background-image: url('./images/menuBgRO.jpg');
	background-position: center top;
	background-repeat: repeat-x;
}
 
#header {
	margin-bottom: 8px;
}
 
#footer {
	width: 911px;
	padding-left: 6px;
	padding-right: 6px;
	background-color: #FFF;
	margin: 0 auto;
	height: 83px;
	background-image: url('./images/footerBg.jpg');
	background-position: center bottom;
	background-repeat: no-repeat;
	color:#FFF;
}
 
#footer a {
	color: #FFF;
	font-weight: bold;
}
 
#footer a:hover {
	text-decoration: none;
}
 
#footerCopyA, #footerCopyB {
	float: left;
}
 
#footerCopyC {
	float: right;
}
 
#footerCopyA {
	padding-top: 33px;
	padding-left: 55px;
}
 
#footerCopyB {
	padding-top: 33px;
	padding-left: 50px;
}
 
#footerCopyC {
	padding-top: 31px;
	padding-right: 15px;
}
 
#leftColumn, #rightColumn {
	width: 189px;
}
 
#leftColumn {
	float: left;
}
 
#rightColumn {
	float: right;
}
 
#middleColumn {
	width: 527px;
	margin: 0 auto;
	padding-bottom: 1px;
}
 
.boxHeader {
	width: 189px;
	height: 41px;
	background-image: url('./images/boxBgHeader.jpg');
	background-position: center top;
	background-repeat: no-repeat;	
}
 
.boxHeader h2 {
	margin: 0;
	padding: 0;
	padding-left: 20px;
	padding-top: 17px;	
	font-weight: bold;
	font-size: 11px;
	color: #FFF;
}
 
.boxContent {
	width: 185px;
	padding: 1px 0px;
	margin-bottom: 6px;
}
 
.boxContent ol li {
	letter-spacing: -0.3px;
	padding: 3px 1px;
}
 
.boxContent ol li a {
	float: left;
	color: #3E6F32;
	font-weight: bold;
}
 
 
 
.forumPosts .text {
	font-size: 9px;
	padding: 1px 0px;
	letter-spacing: -0.3px;
}
 
.forumPosts .textInfo {
	font-size: 9px;
	color: #6C0505;
	padding: 1px 0px;
	letter-spacing: -0.3px;
}
 
.forumPosts .text a {
	color:#000;
	text-decoration: none;
}
 
.forumPosts .text a:hover {
	text-decoration: underline;
}
 
.forumPosts a.user {
	color: #C01313;
	font-weight: bold;
}
 
.forumPosts a.date {
	color: #6C0505;
	font-weight: bold;
}
 
.boxContent .fLeft div, .boxContent .fRight div {
	margin-top: 8px;
}
 
.boxContent .rosterLeft {
	padding-left: 5px;
	float: left;
	margin-bottom: 8px;
}
 
.boxContent .rosterRight {
	padding-right: 5px;
	float: right;
	margin-bottom: 8px;
}
 
.boxContent .rosterLeft div, .boxContent .rosterRight div {
	margin-top: 6px;
}
 
.boxContent .rosterUser {
	background-color: #F3F3F3;
	clear: both;
	padding: 3px 5px;
	text-align: center;
}
 
.boxContent .sponsor {
	padding: 3px 0px;
}
 
.news {
	background-image: url('./images/cboxBg.jpg');
	background-position: center top;
	background-repeat: repeat-y;	
}
 
.cBoxHeader {
	width: 527px;
	height: 45px;
	background-image: url('./images/cboxBgHeader.jpg');
	background-position: center top;
	background-repeat: no-repeat;	
}
 
.cBoxHeader h2 {
	margin: 0;
	padding: 0;
	padding-left: 44px;
	padding-top: 14px;	
	font-weight: bold;
	font-size: 11px;
	color: #FFF;
}
 
.cBoxBg {
	width: 521px;
	padding-top: 2px;
	padding-bottom: 10px;
	padding: 2px 3px 10px;
	background-image: url('./images/cboxFooter.jpg');
	background-position: center bottom;
	background-repeat: no-repeat;
	margin-bottom: 5px;
}
 
.cBoxBg .cBoxText .cBoxLink {
	margin-top: 12px;
	
}
 
.cBoxBg .cBoxText .cBoxLink a {
	color: #B40F0F;
	font-weight: bold;
}
 
.cBoxBg .cBoxText {
	padding:8px 15px;
}
 
.cBoxBg .cBoxText .cBoxTextInfo {
	color: #9B4D26;
	margin-bottom: 8px;
}
 
.cBoxBg .cBoxText .cBoxTextInfo .what {
	color: #140802;
	font-weight:bold;
}
 
.teamAColor {
	color: #6C0505;
	font-size: 9px;
}
 
.teamBColor {
	color: #191054;
	font-size: 9px;
}
 
.vsColor {
	font-size: 8px;
	color: #1A1A1A;
	font-weight: bold;
}
 
.red , .boxContent .red {
	color: #AF0F0F;
	letter-spacing: -0.5px;
}
 
.green , .boxContent .green {
	color: #3E6F32;
	letter-spacing: -0.5px;
}
 
.bold {
	font-weight:bold;
}
 
.underline {
	text-decoration: underline;
}
 
.fLeft {
	float: left;
}
 
.fRight {
	float: right;
}
 
.cRight {
	clear: right;
}
 
.cLeft {
	clear: left;
}
 
.cBoth {
	clear: both;
}
#rightcont .box1 .col2
{
    FLOAT: right;
    WIDTH: 155px
}
 
 
[+][-]09.07.2008 at 11:49AM PDT, ID: 22412342

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.07.2008 at 12:08PM PDT, ID: 22412399

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.07.2008 at 12:11PM PDT, ID: 22412407

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: Cascading Style Sheets (CSS)
Tags: CSS
Sign Up Now!
Solution Provided By: kayahr
Participating Experts: 2
Solution Grade: A
 
 
[+][-]09.07.2008 at 12:18PM PDT, ID: 22412429

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.07.2008 at 12:19PM PDT, ID: 22412434

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.07.2008 at 12:33PM PDT, ID: 22412488

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628