Company Website Online

Posted in Blog, Company, webdesign on June 17th, 2009 by Matthias
No Gravatar

Hi there,

our company website is online since yesterday.  More improvement and updates to the website will follow. This blog will get an overhaul as well, in the upcoming weeks .

Cheers,

Matthias

Popularity: 18% [?]

  • Share/Bookmark

Placing DIVs over Flash-Objects

Posted in Tips, webdesign on December 29th, 2008 by Joerg
No Gravatar

During my attempts to get into the deepest voodoo magic known to man, sometimes referred to as “webdesign”, I stumbled over another problem which took me some time to find the answer to. But since I recently played Professor Layton for the DS and immediately fell in love with it, I don’t mind wracking my brains about a riddle now and then… So my problem was to display a DIV element OVER an existing flash-object.

The first hits on google told me that this is impossible, since the flash-object has no z-index and hence the z-indexing for elements does not work here.

After some more google-usage, I found out that you can tell your flash-object to be “transparent”. You do this by adding the parameter “wmode” and giving it the value of “transparent”. You’ll also have to add wmode=”transparent” to your embed tag. And voila, it worked for me! I haven’t tested it on mac browsers, but as soon as I’ll have I’ll tell you.

So the whole code looks like this:

<div id="flash">
<object border="0" width="802" height="766" id="YOUR_ID_HERE">
<param name="movie" value="myswf.swf">
<param name="allowScriptAccess" value="always">
<param name="wmode" value="transparent">
<embed src="myswf.swf" width="802" height="766" name="YOUR_ID_HERE" wmode="transparent">
</embed>
</object>
</div>

As you can see, I used a unique DIV that holds the flash-object. This DIV has a lower z-index than the DIV that is shown over the flash-object. As I told you, the z-indexing does not work in this case. I just added it for the sake of completeness.

Popularity: 3% [?]

  • Share/Bookmark
Tags: , , ,

Make your blog individual

Posted in Blog, Tips, webdesign on November 26th, 2008 by Joerg
No Gravatar

Nowadays, nearly every website that needs some information-updating now and then is done using a so-called “content management system”.

Blogging software can be seen as a special sub-category type of cms. The software we use to manage our blog is called Wordpress. And since you know that individuality is important for most people, there are many different themes available for Wordpress to give your blog an individual and/or personal touch. I must admit that we are using a standard theme for the moment, but this may change soon…

If you have ever wanted to create your own Wordpress Theme then this is your lucky day. Be sure to check out these nifty tutorials.
You’ll only need some very very basic html and php knowledge to understand them! Even I managed it. Maybe you will see the effects of my efforts soon :)

Popularity: 3% [?]

  • Share/Bookmark
Tags: ,