pessimizt Posted August 12, 2008 Share Posted August 12, 2008 Hi, I've changed all "padding" to equals to "0px" in the style.css in my templates forlder but when i load the page, there is still some spacing in between tables. Where else did i miss ? 0 Quote Link to comment Share on other sites More sharing options...
DataHosts Posted August 12, 2008 Share Posted August 12, 2008 on the actual .tpl files there a tables that need to be adjusted as well. You will want to look at these as well. 0 Quote Link to comment Share on other sites More sharing options...
pessimizt Posted August 13, 2008 Author Share Posted August 13, 2008 on the actual .tpl files there a tables that need to be adjusted as well. You will want to look at these as well. Hi hi, i've checked my header.tpl and confirmed that the "cellspacing" and "cellpadding" have been set to "0px". Any other advice please ? 0 Quote Link to comment Share on other sites More sharing options...
charliez Posted August 13, 2008 Share Posted August 13, 2008 Try margin=0px; too... 0 Quote Link to comment Share on other sites More sharing options...
MACscr Posted August 13, 2008 Share Posted August 13, 2008 border-collapse:collapse; 0 Quote Link to comment Share on other sites More sharing options...
pessimizt Posted August 13, 2008 Author Share Posted August 13, 2008 Hi hi, I've checked both header.tpl and style.css files for: - "margin" fields all are "0px" already - i cant seem to find "border-collapse" field though. may i know where do i find it or add it ? Thank you. 0 Quote Link to comment Share on other sites More sharing options...
Adam :: Envise Posted August 13, 2008 Share Posted August 13, 2008 - i cant seem to find "border-collapse" field though. may i know where do i find it or add it ? border-collapse is part of CSS. You will need something like the following to execute it: #tableid { border-collapse:collapse; } 0 Quote Link to comment Share on other sites More sharing options...
pessimizt Posted August 13, 2008 Author Share Posted August 13, 2008 border-collapse is part of CSS. You will need something like the following to execute it: #tableid { border-collapse:collapse; } Hi hi, Sorry but i also dont see fields in style.css that has #tableid ???? Do i have to add it in ?? 0 Quote Link to comment Share on other sites More sharing options...
MikeDVB Posted August 13, 2008 Share Posted August 13, 2008 You would have to add it. So if the table was <table id="ordertable"> the css would be #ordertable { border-collapse:collapse; } Basically you would need to go through and see what tables were not formatted as you wanted and add the appropriate CSS for it. 0 Quote Link to comment Share on other sites More sharing options...
pessimizt Posted August 13, 2008 Author Share Posted August 13, 2008 You would have to add it. So if the table was <table id="ordertable"> the css would be #ordertable { border-collapse:collapse; } Basically you would need to go through and see what tables were not formatted as you wanted and add the appropriate CSS for it. Thank you very much ! It worked ! 0 Quote Link to comment Share on other sites More sharing options...
MikeDVB Posted August 13, 2008 Share Posted August 13, 2008 No problem at all, always glad to be of assistance. 0 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.