html
make printing buttons invisible
Try this:
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>some title</title>
<base href="url" />
<link href="css/styles.css" rel="stylesheet" type="text/css" />
<style>
@media print {
.print {
visibility: hidden;
}
}
</style>
</head>
onclick="window.print(); window.close();"
<div align="center" style="visibility: show; padding:10px" class="print">
- liviu's blog
- Login or register to post comments
An iframe that won't disapear
I had a problem with an iframe once that although had 0 width and height would still show up on the page. What finally did the trick was the marginheight attribute set to 0, marginheight = "0". Hope this helps if it happens to you.
- liviu's blog
- Login or register to post comments
A nice Marquee example
The marquee tag is nice for advertising. It should be used i think on the web, because the effect is decent and it's very easy to implement.
Example:
- liviu's blog
- Login or register to post comments
- Read more