html

make printing buttons invisible

Tagged:  

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">

An iframe that won't disapear

Tagged:  

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.

A nice Marquee example

Tagged:  

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:

Syndicate content