Headers to pics |
Headers to pics |
Jul 20 2008, 03:46 PM
Post
#1
|
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 50 Joined: Aug 2007 Member No: 565,680 |
are there codes to change headers like About me,i'd like to meet,Friend space and stuff like that to an image?
|
|
|
|
![]() |
Jul 20 2008, 04:47 PM
Post
#2
|
|
|
Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 |
Try this code:
CODE <style> .orangetext15 {background-image:url("URL");} </style> Just replace URL with the url of the image you want. |
|
|
|
Jul 20 2008, 08:12 PM
Post
#3
|
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 50 Joined: Aug 2007 Member No: 565,680 |
no i meant change the headers individualy
|
|
|
|
Jul 20 2008, 08:30 PM
Post
#4
|
|
![]() asdfghjkl; ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Designer Posts: 1,121 Joined: Jul 2008 Member No: 665,416 |
you can hide them all,
then just make your own text. that would work. |
|
|
|
Jul 20 2008, 09:17 PM
Post
#5
|
|
|
Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 |
You can't change them individually because they're all the same class: orangetext15. If you change one, you change all of them.
But yes, Niko's suggestion would work. Use this code to hide them all: CODE <style> .orangetext15 {visibility:hidden; display:none;} </style> Then, you can just design your own headers that will replace them. |
|
|
|
Jul 21 2008, 03:17 AM
Post
#6
|
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 1,237 Joined: May 2008 Member No: 648,123 |
you can do them individually by telling which table cell they're in, like so:
CODE <style> .blurbs .orangetext15 { background:url(IMAGE LINK); display:block; height:##px; width:##px; } .friendSpace .orangetext15 { background:url(IMAGE LINK); display:block; height:##px; width:##px; } .friendsComments .orangetext15 { background:url(IMAGE LINK); display:block; height:##px; width:##px; } </style> the only problem with doing it for your About Me title is that the ".blurbs .orangetext15" is going to change the "about me" and the "who i'd like to meet" headings. you can fix it by doing something like nikx618 said: hide it and put an image at the top of your about me text. you can hide it with .blurbs .orangetext15 { display:none; } |
|
|
|
Jul 21 2008, 12:09 PM
Post
#7
|
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 50 Joined: Aug 2007 Member No: 565,680 |
its not working i'm getting this
|
|
|
|
Jul 21 2008, 12:18 PM
Post
#8
|
|
|
Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 |
Add the bolded parts to the code Fixtatik gave you.
CODE <style> .blurbs .orangetext15 { background:url(IMAGE LINK); display:block; height:##px; width:##px; font:0px; letter-spacing:-5px; } .friendSpace .orangetext15 { background:url(IMAGE LINK); display:block; height:##px; width:##px; font:0px; letter-spacing:-5px; } .friendsComments .orangetext15 { background:url(IMAGE LINK); display:block; height:##px; width:##px; font:0px; letter-spacing:-5px; } </style> See if that takes care of the words. |
|
|
|
Jul 21 2008, 12:25 PM
Post
#9
|
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 50 Joined: Aug 2007 Member No: 565,680 |
thanks works like a charm...you guys are so helpful and solve a lot of my html wonders
kudos to anarchy and fixtatik |
|
|
|
![]() ![]() |