Log In · Register

 
html;
younqxquizit
post Dec 2 2008, 03:48 PM
Post #1


word?!?
***

Group: Member
Posts: 67
Joined: Sep 2008
Member No: 683,462



can you put html on createbloq when your editinqq' your profile likee the about me section & stuff? _unsure.gif

causee i was tryna chanqe the font color. but it wouldnt work
 
 
Start new topic
Replies (1 - 15)
Maccabee
post Dec 2 2008, 05:01 PM
Post #2


Senior Member
*******

Group: Official Designer
Posts: 5,880
Joined: Nov 2007
Member No: 593,382



QUOTE(younqxquizit @ Dec 2 2008, 02:48 PM) *
can you put html on createbloq when your editinqq' your profile likee the about me section & stuff? _unsure.gif

causee i was tryna chanqe the font color. but it wouldnt work


You can only use css.

SO if you want to make all text red you could this.

CODE
<style type="text/css">

body{
color:red;
}

</style>


And then replace red with any other color or use a hex color.

Ex: 000000

And if you use a hex color make sure you put a # before it.

Ex:

CODE
<style type="text/css">

body{
color:#FFFFFF;
}

</style>

 
younqxquizit
post Dec 2 2008, 05:14 PM
Post #3


word?!?
***

Group: Member
Posts: 67
Joined: Sep 2008
Member No: 683,462



ok i see
but likee i only wanna chanqe one word.
do i still have to use that whole thinq?
 
manny-the-dino
post Dec 2 2008, 05:26 PM
Post #4


Senior Member
*******

Group: Administrator
Posts: 8,629
Joined: Jan 2007
Member No: 498,468



Moved to cB Support


I think for it to only be one word, you'd use this code:
CODE
<font color="red">text</font color>


I'm not completely sure so don't hate me if I get it wrong. pinch.gif
 
hi-C
post Dec 2 2008, 05:29 PM
Post #5


Amberific.
********

Group: Staff Alumni
Posts: 12,913
Joined: Jul 2004
Member No: 29,772



This has nothing to do with the conversation at hand, but why do you replace your g's with q's?
 
younqxquizit
post Dec 2 2008, 05:50 PM
Post #6


word?!?
***

Group: Member
Posts: 67
Joined: Sep 2008
Member No: 683,462



QUOTE(hi-C @ Dec 2 2008, 05:29 PM) *
This has nothing to do with the conversation at hand, but why do you replace your g's with q's?


lol i knoo.
someone else just told me about that.
but i wont write like that no more then (:

QUOTE(manny-the-dino @ Dec 2 2008, 05:26 PM) *
Moved to cB Support
I think for it to only be one word, you'd use this code:
CODE
<font color="red">text</font color>


I'm not completely sure so don't hate me if I get it wrong. pinch.gif



nahh that doesnt work either.
like i put.

CODE
<font color=red>something</font>

&& the code disapears'

then i put
CODE
[color=black]something[/color]

^^ just to try & all it did was stay on my pagee & didnt change the color.
Reason for edit: posts merged. please don't double post. thanks -nat
 
manny-the-dino
post Dec 2 2008, 05:57 PM
Post #7


Senior Member
*******

Group: Administrator
Posts: 8,629
Joined: Jan 2007
Member No: 498,468



Oh okay. Well I say wait for Joseph to reply. He'll help you out. thumbsup.gif
 
Mikeplyts
post Dec 2 2008, 06:03 PM
Post #8


Mel Blanc was allergic to carrots.
*******

Group: Official Designer
Posts: 6,371
Joined: Aug 2008
Member No: 676,291



Uhhh... how about this?

CODE
<font style="font-color:#FF0000;">text</font>
 
younqxquizit
post Dec 2 2008, 06:28 PM
Post #9


word?!?
***

Group: Member
Posts: 67
Joined: Sep 2008
Member No: 683,462



QUOTE(Mikeplyts @ Dec 2 2008, 06:03 PM) *
Uhhh... how about this?

CODE
<font style="font-color:#FF0000;">text</font>


nahh ): it just disapears
 
Mikeplyts
post Dec 2 2008, 07:33 PM
Post #10


Mel Blanc was allergic to carrots.
*******

Group: Official Designer
Posts: 6,371
Joined: Aug 2008
Member No: 676,291



What if you made a span class?

CODE
.textcolor {
display:block;
font-size:9px;
font-color:#FF0000;
font-family:tahoma;
}


and then,
CODE
<span class="textcolor">text</span>
 
younqxquizit
post Dec 2 2008, 07:52 PM
Post #11


word?!?
***

Group: Member
Posts: 67
Joined: Sep 2008
Member No: 683,462



nahh that didnt work either lol
the top one just stay on my profile & the second one left

maybe i didnt say it right.

but im tryna edit the

Edit Profile (personal info)

About Me

Interests


Music

Movies


TV


Books

Quotes

Favorite quotes

that stuff lol
 
manny-the-dino
post Dec 2 2008, 07:53 PM
Post #12


Senior Member
*******

Group: Administrator
Posts: 8,629
Joined: Jan 2007
Member No: 498,468



Wait this is for Myspace?
 
Mikeplyts
post Dec 2 2008, 08:02 PM
Post #13


Mel Blanc was allergic to carrots.
*******

Group: Official Designer
Posts: 6,371
Joined: Aug 2008
Member No: 676,291



^No this is for CreateBlog. He's not talking about the Customize Profile, he said he's talking about the Edit Profile.

Maybe this?

CODE
<style>
div, table, td, th, tr, font, small, big, p {
font-size:9px;
font-weight:normal;
font-family:tahoma;
text-decoration:none;
color:#FF0000;
}
</style>

^But put that in your Header HTML. Then go back to the Edit Profile and type your text. See if that works. _smile.gif
 
manny-the-dino
post Dec 2 2008, 08:04 PM
Post #14


Senior Member
*******

Group: Administrator
Posts: 8,629
Joined: Jan 2007
Member No: 498,468



Ohh okay. Never mind. I read TV, Movies, & Music & automatically thought of Myspace.

Carry on.
 
younqxquizit
post Dec 2 2008, 08:35 PM
Post #15


word?!?
***

Group: Member
Posts: 67
Joined: Sep 2008
Member No: 683,462



QUOTE(Mikeplyts @ Dec 2 2008, 08:02 PM) *
^No this is for CreateBlog. He's not talking about the Customize Profile, he said he's talking about the Edit Profile.

Maybe this?

CODE
<style>
div, table, td, th, tr, font, small, big, p {
font-size:9px;
font-weight:normal;
font-family:tahoma;
text-decoration:none;
color:#FF0000;
}
</style>

^But put that in your Header HTML. Then go back to the Edit Profile and type your text. See if that works. _smile.gif



nahh that didnt work either. like every time i enter
QUOTE
<font color=red>
or somethinqq like that it just disapears'. i guess you cant change it but thanks for your help _smile.gif
 
Maccabee
post Dec 6 2008, 03:08 AM
Post #16


Senior Member
*******

Group: Official Designer
Posts: 5,880
Joined: Nov 2007
Member No: 593,382



Im not sure but i think

CODE
<span style="color:red;">HELLO!</span>


should work.

just experiment.
 

Closed TopicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members: