28 Apr
Centering a page, or a div in a page has got a lot easier with the latest browsers reading CSS more constantly.
Put this in your CSS:
body { width: 70%; margin left: auto; margin-right: auto; } or
div.mid { width: 70%; margin left: auto; [...]
Posted in HTML by: Rhys
No Comments
13 Apr
You can put an AVI or MPEG video on your web-page with this following code. It incorporates the player, so doesn’t depend on the user having “Quicktime” or “Whatever” installed.
<object id=”MediaPlayer1″ CLASSID=”CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95″ codebase=”http://activex.microsoft.com/activex/controls/mplayer/en/nsm p2inf.cab#Version=5,1,52,701″
standby=”Loading Microsoft Windows® Media Player components…” type=”application/x-oleobject” width=”144″ height=”154″ border=”2″>
<param name=”fileName” value=”Movie.wmv”>
<param name=”animationatStart” value=”true”>
<param name=”transparentatStart” value=”true”>
<param name=”autoStart” value=”true”>
<param name=”showControls” value=”true”>
<param name=”Volume” [...]
Posted in Graphics by: Rhys
No Comments
05 Apr
How To Edit DVD’s or your own Video Movies. Have you ever bought a DVD that wouldn’t play, because the zone was wrong or something? It is totally frustrating to have your player spit the disk out again every time you load it.
I had to experiment for days, and read hours of tutorials [...]
Posted in Graphics by: Rhys
No Comments