Click here to Skip to main content
15,904,652 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello Everyone,
Running An Asp Page in browser showing me different page layout(design) with different browser.
for example, my asp page is looking best with mozilla 2.0 and position of buttons,textboxes changes with IE, and looking too bad with mozilla 18.

some part of design not showing properly with mozilla 18.


Dear Experts, my 2nd Question is image not showing in different browser..

What could be the possible reason for that?????

Guide me Experts....

Regards : Manish Kumar
Posted
Comments
AnkitGoel.com 13-Dec-12 0:06am    
you need to use standardized css in your page.

Try this

JavaScript
$(document).ready(function () {
            if ($.browser.webkit) {

        //your css for chrome
}

else if ($.browser.msie) {
//Your css for IE
}
}
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900