View Full Version : help please w/ opacity and text css


justfabulous
11-06-2004, 05:15 PM
I really appreciate it if you could please help me!

Here are my questions:
I've searched through this forum and have learned how to make my div transclucent with the style="filter: alpha(opacity=30);" code but how can I make my text in images within the div 100% opaque?

How would I use CSS to make a piece of text align to the right, with spaces in between the letters? I tried
<font size="3" style="text-transform:uppercase; text-align: right;"> but the text align doesn't work

ie. L I K E T H I S


Thanks so much! I really appreciate it!

kittycat
11-06-2004, 07:17 PM
First question: You can't, that filter applies to everything inside the div, you can't make it only apply to certain things

Second: Try this and see if it works
<div style="text-transform: uppercase; text-align: right; letter-spacing: 3px;">text here</div>

justfabulous
11-07-2004, 08:30 PM
Thanks so much kittycat! That really helped :)

MistressVivi
11-08-2004, 05:03 PM
For the transparency issue, I suggest keeping your div as is, but then putting another div directly over it with absolute positioning and adding your text and images to that.