How can I go about safely removing DIV tags fom a template or HTML page? What standard HTML tags and style data do I need to include to replace them?
Solution:
- Code: Select all
html, body {
background: #242424 url(images/body.gif);
padding: 0;
margin: 0;
color: #D0D0D0;
[highlight]height: 100%;[/highlight]
}
in CSS. Simple as that. Damn Firefox lol


