Customize menu

gootoi / 2012-06-07 13:31:07   

Hello,Thank you a great update.

I want to make 80% semi-transparent background color of the menu, what should I do?

"filter:alpha(opacity=80); -moz-opacity:0.8; opacity:0.8; "

I try to add a sentence on the "ndxzsite / default / style.css", will not be reflected.

My Web is soi-saudade.com .Thank you.

lemathieu A / 2012-06-07 15:51:47   

Just use this rule in your #index :

background-color: rgba(#,#,#,X);
where X (between 0 and 1) is the transparency level (1 is opaque).

So you want something like : background-color: rgba(255,255,255,0.5);

lemathieu A / 2012-06-07 15:55:08   

And believe us, Firebug for firefox or Developpers tools for chrome is what you need, and don't forget to try (this is the best way for learning).

Ah, and you should ask w3schools.com when you want to learn something, it's huge (and this question was not relative to Indexhibit at all).

gootoi / 2012-06-07 17:20:31   

Thank you for your reply,I'll try!

This thread has been closed, thank you.