HI I am trying to get rid of this warning over and over.

My pages are located in directory
WEBSERVER\APPLICATIONS\WC

Master pages in
WEBSERVER\APPLICATIONS

CSS and Javsasripts are in
WEBSERVER

and in css I have
background:url(Images/GlowTab.png) no-repeat right top;

Dont know even though the image gets accessed by Https. why it is still giving that warning.

Look at the browser's source code. Somewhere in that code you must have a script, link, and/or img tag where you have a FULL url that starts with "http://", BUT you are accessing/viewing the page via "https://". The warning you are describing would happen when these differ in the protocol. If the tag in question refers to a file on your server, then do not use a full url - use a relative path.

Note: It is possible that there may be a script that is dynamically importing other files using http. Same goes for css.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.