Dominator24 Posted July 14, 2010 Share Posted July 14, 2010 Hello there, I am currently integrating my WHMCS into a new template, been paying for this service in the past however I thought I would give it a shot, all is going very well, however. There is a problem with the CSS file that my main template uses that messes up the WHMCS CSS file. In my reset.css (my template css), I have the code. * { margin: 0; padding: 0; border: none; } This makes the tables go funny within WHMCS and it ignores them. If I delete that code in my CSS file I get a white boarder around the edges of the whole site, however all tables are displayed correctly. Can anyone help me? 0 Quote Link to comment Share on other sites More sharing options...
Wiredremix Posted July 15, 2010 Share Posted July 15, 2010 That is a very basic page reset line, basicly to set the web browser because some browsers add padding etc automaticly so that stops it. Now if this is causing your page to apear funny then it is the rest of the code that has issues. To replace that above line you could try removing it and put the "margin: 0; padding: 0; border: none;" part into the body css tag. So for example: body { margin: 0; padding: 0; border: none; } along with what ever you have in the body box already. 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.