Hi,
I am working on this site: www.visualcomm.com/site and am having some slight problems with formatting across different browsers (surprise). My main problem right now, is the formatting of the content div. I have a div in the main area which will display various html pages based on the button the user clicks (done via js/ajax type setup).
So if you click the "Team" button, the team.html file will load into the "content" div. The problem is, from what I can tell, that Safari and IE6 seem to drop what formatting I have set up in the html pages and just throw the content into that div. In Firefox it works fine. there are two columns in the "Clients" page and the images on the "Team" page are floated left of the copy. In IE6 and Safari that formatting is lost.
If that made sense, does anyone have any ideas? I'll supply any other coding if someone needs.
I am working on this site: www.visualcomm.com/site and am having some slight problems with formatting across different browsers (surprise). My main problem right now, is the formatting of the content div. I have a div in the main area which will display various html pages based on the button the user clicks (done via js/ajax type setup).
Code:
#content {
background-image: url(imagesetc/curves/curve1.jpg);
background-repeat: no-repeat;
position: absolute;
padding: 10px;
top: 110px;
left: 152px;
right: 0px;
bottom: 160px;
overflow: auto;
}
So if you click the "Team" button, the team.html file will load into the "content" div. The problem is, from what I can tell, that Safari and IE6 seem to drop what formatting I have set up in the html pages and just throw the content into that div. In Firefox it works fine. there are two columns in the "Clients" page and the images on the "Team" page are floated left of the copy. In IE6 and Safari that formatting is lost.
If that made sense, does anyone have any ideas? I'll supply any other coding if someone needs.