Help please ^.^ |
![]() ![]() |
Help please ^.^ |
Aug 20 2008, 03:52 PM
Post
#1
|
|
|
Newbie ![]() Group: Member Posts: 2 Joined: Aug 2008 Member No: 678,188 |
hey, ok...I'm trying to make a layout, and I have this part that's giving me trouble...
CODE <div class="support" style="position: absolute; left:420px; top:670px; width:332px; height:357px; overflow: auto;"><center><b> Put whatever here blah blah blah blah blah.................... </center> </div> I want to change the font color to white, but when i put <font color=white> it gets rid of all the font. Why does it do that, and how can I fix it? Thanks ^.^
Reason for edit: Please put your codes in codeboxes. Thanks. - Gabi :)
|
|
|
|
Aug 20 2008, 04:47 PM
Post
#2
|
|
|
R.I.P JDL ![]() ![]() ![]() ![]() Group: Member Posts: 178 Joined: May 2008 Member No: 652,668 |
there are two things you could do.
CODE <div class="support" style="position: absolute; left:420px; top:670px; width:332px; height:357px; overflow: auto; color:ffffff;"><center> <b> Put whatever here blah blah blah blah blah.................... </center> </div> or CODE <div class="support" style="position: absolute; left:420px; top:670px; width:332px; height:357px; overflow: auto;"><center><font color=ffffff> <b> Put whatever here blah blah blah blah blah.................... </font> </center> </div> also, depending on what you have your bold font set to it could also be contributing to it not working. |
|
|
|
Aug 20 2008, 08:41 PM
Post
#3
|
|
![]() Senior Senior Member ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Member Posts: 1,507 Joined: Sep 2007 Member No: 571,541 |
you have to REMEMBER to CLOSE your stylesheets..
CODE <NAME>code</NAME>
|
|
|
|
Aug 21 2008, 12:10 PM
Post
#4
|
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 1,237 Joined: May 2008 Member No: 648,123 |
would you mind posting your codes? if you're putting text between <font></font> tags and it disappears, you probably have something like font { display:none; visibility:hidden; } in your style sheet.
|
|
|
|
Aug 21 2008, 01:20 PM
Post
#5
|
|
![]() asdfghjkl; ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Designer Posts: 1,121 Joined: Jul 2008 Member No: 665,416 |
its possible that somewhere else on your style sheet it shows
like .text td table or something then {color:black;} &that's what is affecting your coding. maybee. |
|
|
|
Aug 21 2008, 01:57 PM
Post
#6
|
|
![]() Senior Senior Member ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Member Posts: 1,507 Joined: Sep 2007 Member No: 571,541 |
hey, ok...I'm trying to make a layout, and I have this part that's giving me trouble... CODE <div class="support" style="position: absolute; left:420px; top:670px; width:332px; height:357px; overflow: auto;"><center><b> Put whatever here blah blah blah blah blah.................... </center> </div> I want to change the font color to white, but when i put <font color=white> it gets rid of all the font. Why does it do that, and how can I fix it? Thanks ^.^ the reason why they were disapeering, was because you didnt CLOSE your Styletags (code) |
|
|
|
![]() ![]() |