Hi Dp members, My site looks fine in latest Firefox (3.6.3). But the testimonials div gets slightly on the right side on Gooogle Chrome. Is this a CSS difference? How does this happen? I'd be happy if someone would share his insight on this. And how do i go about fixing this little bug? The site is: www.aquickhost.com Waiting for you kind reply, thanks.
Well, No Difference comes to the CSS, But each brower reads the CSS different ways..! Make Conditional CSS like If the browser is Chrome, Point to chrome.css like that..! and make a CSS which would give the Correct look in CHrome. Actually the problems faced are like Width issues. Height and so... not much complex things Thanks
Here you go <!--[if IE]> <style type="text/css">@import "IE-newcsshere.css";</style> <![endif]--> Include it to your HTML or whatever is accessing your CSS. And In the newcsshere.css have the Special CSS only for IE and it will override the default css once it is accessed by IE Does that make a point to you? Thanks
which browser you face the probelm, you have to put the user agent name there.. not just words and another thing, you need a Java script to find which browser they are running on *Sad* make a java program to point out which browser the visitor is using, and once they point it to chrome, <!--[if chrome]> <style type="text/css">@import "IE-newcsshere.css";</style> <![endif]--> Will be excecuted..! Or else, it will be neglected. So grab 2 things, a Small Java script to find the browser, and User agent Name of Chrome(am not sure what is it ) and make the css and all, and it would be done Thanks
Chrome is the browser built by Google, known as Google Chrome, I am basically having this problem on Chrome only, not on firefox or ie. Still those info's are quite useful, I need a way to do the exact thing in Chrome. Thanks