Click to See Complete Forum and Search --> : [RESOLVED] CSS file empty but still php document picks up style


prachu
03-28-2008, 09:40 AM
Hi all

I have a php document to display some text, google maps and some images. For defining the CSS I have a saparate file called speciesPageStyle.css.

In my php document I have the following line

<link rel="stylesheet" type="text/css"
href="speciesPageStyle.css" />

My problem here is since I was not able to get the layout I want with CSS, I thought I would comment the contents of the CSS file namely speciesPageStyle.css

I did so, but still my php document picks the CSS from somewhere!!!

I am able to get rid of CSS only by commenting the line

<!--

<link rel="stylesheet" type="text/css"
href="speciesPageStyle.css" />

-->

why is this happening? If the CSS file is empty/commented completely where is the style coming from

Any help is greatly appreciated

jasonahoule
03-28-2008, 09:54 AM
Maybe it was cached.

prachu
03-28-2008, 10:10 AM
yeah thanks.. that was the reason. :)