Guest lauren stephens Posted June 24, 2006 Share Posted June 24, 2006 i redesigned my CC using the classic skin. looks fine in IE, but i decided to check it out in FF and it isnt even functional at all how exactly can i fix this TIA http://proprietaryservers.com/hosting/ not a live cart yet, only test products and images Quote Link to comment Share on other sites More sharing options...
Guest vrakas Posted June 24, 2006 Share Posted June 24, 2006 As this is a custom skin it would be best if you try in the .org forum :D Quote Link to comment Share on other sites More sharing options...
Guest lauren stephens Posted June 24, 2006 Share Posted June 24, 2006 it isnt custom, it is the classic skin Quote Link to comment Share on other sites More sharing options...
Guest vrakas Posted June 25, 2006 Share Posted June 25, 2006 The classic skin that has been modified by you The main problems usually are with some div missing. Quote Link to comment Share on other sites More sharing options...
Guest efolia Posted June 30, 2006 Share Posted June 30, 2006 The classic skin that has been modified by you The main problems usually are with some div missing. ... or an error in the div ordering, or some div property missing (as is probably the case here...), or a combination of both. Minor xhtml coding errors can also cause divs to misbehave, so make sure your code is strictly compliant (for example, close your img tag in the top header). Using a good editor will help. While developing a boxed layout with CSS, I always give each of my div a thin solid colored border, so I know which one is misbehaving. Tracking the results of every single change in the code with both IE and Firefox (and possibly Opera) is a sure way not to get too far lost. It's a simple matter of hitting F5 in 2 or 3 windows... Cheers. Quote Link to comment Share on other sites More sharing options...
convict Posted June 30, 2006 Share Posted June 30, 2006 i redesigned my CC using the classic skin. looks fine in IE, but i decided to check it out in FF and it isnt even functional at all how exactly can i fix this TIA http://proprietaryservers.com/hosting/ not a live cart yet, only test products and images There are not serious html validation errors, only those like <BR> instead of <br /> or undefined alt for <img> tag. This cant be a source of the issues. You have made TWO serious mistakes: 1) You use non-existing css property values like float:center in .colMid. The reslut is the same as NO float property there. Float property has only TWO values right and left! Change centre to left and the layout will be almost correct. 2) The second issue is the height of your LOGO. You use different height of header block in css #topHeader height: 36px; Please use height: 150px; (or some similar height) IE is silly browser...LOL :D Quote Link to comment Share on other sites More sharing options...
Guest lauren stephens Posted October 28, 2006 Share Posted October 28, 2006 i redesigned my CC using the classic skin. looks fine in IE, but i decided to check it out in FF and it isnt even functional at all how exactly can i fix this TIA http://proprietaryservers.com/hosting/ not a live cart yet, only test products and images There are not serious html validation errors, only those like <BR> instead of <br /> or undefined alt for <img> tag. This cant be a source of the issues. You have made TWO serious mistakes: 1) You use non-existing css property values like float:center in .colMid. The reslut is the same as NO float property there. Float property has only TWO values right and left! Change centre to left and the layout will be almost correct. 2) The second issue is the height of your LOGO. You use different height of header block in css #topHeader height: 36px; Please use height: 150px; (or some similar height) IE is silly browser...LOL thanks heaps for your help. i made the corrections and so far, so good. now, i have to add all the content! argh! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.