Category: Designing


This is a general question always arises in my mind that how can I make my drop-down menu over a flash object. On designing I get two tricky things to set which make it possible.

1. Add wmode – transparent to your flash object.
2. Make z-index to max level in drop-down css.

e.g.
In your flash object set following

and
In css file of your top class set
z-index: 10000;

Thus, I come across the solution.

How to add new font to your website

Hi frnds I come across to add anew font file to my website, With a little research i meet with the solution as follows:

Step 1: Make a dir with name font and save the font files.

Step 2: In the css file add this as body font face.
Here I used font CronosPro font for my website

@font-face {
font-family: ‘Conv_CronosPro-Regular’;
src: url(‘../fonts/CronosPro-Regular.eot’);
src: local(‘?’), url(‘../fonts/CronosPro-Regular.woff’) format(‘woff’), url(‘../fonts/CronosPro-Regular.ttf’) format(‘truetype’), url(‘../fonts/CronosPro-Regular.svg’) format(‘svg’);
font-weight: normal;
font-style: normal;
font-size:12px;
}

Hope this help you out….

Powered by WordPress. Theme: Motion by 85ideas.