Thursday, September 18, 2008

Malayalam FM Stations in Kerala

These are the Malayalam FM stations available in Kerala

  1. Ananthapuri FM (Prasar Bharathi) – 101.9 (http://airtvm.com/ananthapurifm.html)

  2. Big FM (adlabs Films Ltd) - 92.7 (http://www.big927fm.com/index.asp?selcity=36)

  3. Mirchi (entertainment Network (India)ltd) -98.3 (http://www.radiomirchi.com/)

  4. Club FM (the Mathrubhumi Printing And Publishing Co Ltd) -94.3 (http://clubfm.in/ )

  5. S FM (Sun TV Network) 93.5 (http://www.sfm935.in/ )

  6. Radio Mango (The Malayala Manorama Co Ltd) -91.9 (http://www.radiomango.co.in/)

  7. Best FM (asianet Communications Ltd) - 95.0

Ananthapuri FM

BIG FM

Radio Mango

Radio Mirchi

FM stations available at Thiruvanthapuram 
  • Ananthapuri FM 
  • Big FM 
  • Radio Mirchi 
  • Club FM 
  • S FM 
FM stations available at  Cochin 
  • Club FM 
  • S FM 
  • Radio Mango 
FM stations available at Thrissur 
  • Radio Mango 
  • Club Fm 
  • S Fm 
  • Best FM 
FM stations available at  Kozhikode 
  • Radio Mango 
  • S FM 
FM stations available at  Kannur 
  • Radio Mango 
  • Club FM 
  • S FM 
  • Best FM

Monday, September 08, 2008

Removing your URLs from Google

I seen one interested video in Youtube. Nobody wants to remove their URLs from Google. But in some exceptional reasons, we have remove the URL from Google. Some of the common methods can be used for removing URLs are

1. Dont link the page
2. editing the .htaccess
3. editing robots.txt
4. put noindex in the page (meta name="robots" content="noindex")
5. putting nofollow to the anchor tag (rel="nofollow")
6. Using URL removal tool (http://www.google.com/support/webmasters/bin/answer.py?hl=en&answer=61062)

Thursday, September 04, 2008

Yet another browser - Google Chrome

Yes! Google has announced its browser on 3rd of September. It has nice look and feel and using maximum screen resolution. And rendering seems to be very similar to the Safari browser. Its javascript rendering is very fast. Have you experienced this all?

Yes! the browser war started.

Now the challenge for the html / css developers. Because Internet Explorer has the monopoly in this market share. Now a lot of browsers. For Internet Explorer, they have 3 important browsers after IE8 is introduced. So the HTML / CSS developers has to check their htmls in 7 browsers

1. Internet Explorer 7
2. Internet Explorer 6
3. Internet Explorer 8
4. Firefox 2 (win & mac)
5. Firefox 3 (win & mac)
6. Safari (win & mac)
7. Google Chrome

Lets see how the HTML / CSS guys are managing with this.

Wednesday, September 03, 2008

I am blogging again

I am getting motivated now. It is none other than my colleague Imthi Again I am going start blogging. It is my ambition to make one blog site. For the time being I am keeping my blogspot. Later I will host all in a blogging website. So I can do whatever I like. This blogspot and all have some limitations. I would like to install wordpress in my blog.

Sunday, May 20, 2007

The button tag

Today only I knew that there is a button tag in html.
Syntax:


Sunday, April 22, 2007

wrap text around image in css

A nice idea to wrap the paragraph around the image
http://www.dynamicdrive.com/style/csslibrary/item/floating-image-with-no-text-wrap/P10/

Tuesday, April 03, 2007

think nicely as zen garden does

Just now I got the idea about this template. I worried about this type of template before.. But Now found the solution. see the backgrounds in this page.. How they nicely done this. thanks zen garden.

http://www.csszengarden.com/?cssfile=/196/196.css&page=0

The background images are coming from both side to center. position to the main container is relative and background images are absolute to main container. Nice idea.

Using Background-Image to Replace Text css

Today i have read one artilce about using background image to replace text in css.. But they are using two elements for achieving this. You can find the article here
http://www.stopdesign.com/articles/replace_text/

However we have a better solution like this?

Suppose we have h1 element.

we will put the backgound image for h1 element in the style sheet
and text-indent -9999px in the style.

example:
#header h1 a {
background:transparent url(images/logo.gif) no-repeat scroll left center;
float:left;
height:85px;
text-indent:-9999px;
width:308px;
}

cant we do like this?

Tuesday, March 20, 2007

opacity problem in ie

Today we have faced such a situation like blured text in ie. We found that it is because of the opacity problem. We got a solution for this. This is very cool thing.



div style="width:100%;

filter:alpha(opacity=90);

font-weight:bold;

div



div style="width:100%;

filter:alpha(opacity=90);

font-weight:bold;

background-color:#fff"

div

The IE Doubled Float-Margin Bug

The Old IE “Doubletake”

This bug only occurs when the float margin goes in the same direction as the float and is trapped directly between the float and the inside edge of the container box. Any following floats with a similar margin won’t show the doubled margin. Only the first float in any given float row will suffer from the bug. Also, the doubled margin displays symmetry, working the same way to the right as it does to the left.

”This property specifies whether a box should float to the left, right, or not at all. It may be set for elements that generate boxes that are not absolutely positioned. The values of this property have the following meanings:

left
The element generates a block box that is floated to the left. Content flows on the right side of the box, starting at the top (subject to the ‘clear’ property). The ‘display’ is ignored, unless it has the value ‘none’.

right
Same as ‘left’, but content flows on the left side of the box, starting at the top.

none
The box is not floated. “
That means that {display: inline;} on a float should be ignored, and indeed all browsers show no changes in the float when this is done, including IE. But, this does somehow trigger IE to stop doubling the float’s margin. Thus, this fix can be applied straight, without any fussy hiding methods.

floatbox {
float: left;
width: 150px;
height: 150px;
margin: 5px 0 5px 100px;
display: inline;
}

Thanks to http://www.positioniseverything.net/explorer/doubled-margin.html

breaking lengthy words

you can break a lengthy word by using tag. I tested and working fine