mixed TypoScript Snippets Vol. 2

New stuff, just copy&paste :-)

Today i present:

Continue reading ‘mixed TypoScript Snippets Vol. 2′

mixed TypoScript Snippets Vol. 1

Today i will start a new Session and post some nice and tricky TypoScript Snippets for Typo3 (tested in Ver. 4.4)

show restricted Pages & add css (class=”locked”)

Continue reading ‘mixed TypoScript Snippets Vol. 1′

How to use transparency with different Browsers

How to:

One more snippet …

I hab trouble with transparency backgrounds and the different Browser interpretation, ahhrgh. But finally i found a cool summary.

take this:

div .test {
   background: rgb(255, 255, 255); /* fallback for all old guys */
   background: rgba(2255, 255, 255, 0.5);
}

Internet Explorer need a special treatment, via conditional comment

<!--[if lt IE 9]>
div .test {background:#fff; filter:alpha(opacity=50);}
<![endif]-->

Thats all. Enjoy it.

CSS: center background image in Firefox & Co.

Today just a short snippet.

To center a background image vertical and horizontal especially Mozilla Firefox need the attribute “fixed”:

body {
background-image: url(....);
background-position: center center;
background-attachment: fixed;
height: 100%;
}

Tested with: IE 6 – 8, Firefox 3.6, Safari 4

With this little trick, my day will be fine! Ole.

TYPO3 Version 4.4.0 released

Yesterday they did it …

The latest TYPO3 version 4.4 makes TYPO3 easier than ever – especially for newbies. Your TYPO3 website can be up and running in five minutes after it has been downloaded – use the included template and it is ready to go right away. Below you will find the most important innovations.

from: http://typo3.org/download/release-notes/typo3-44/

Continue reading ‘TYPO3 Version 4.4.0 released’

How to use position-absolute and z-index with Internet Explorer 7 and nested containers

When you have a div-container which has the attribute position-absolute and you put a 2nd div-container inside (which has also a position-absolute attribute) it can happens that Internet Explorer 7 does not interpret this correct.

I had the problem, that the 2nd div-container (which is a fold-out CSS-menu) is larger than the sorrounding div. In IE 7 the CSS-menu lays, in the part outside the sorrounding container, behind those elements. But for a menu you aspect to be the first element in the hierarchy.

Those layer positions can be set using z-index in CSS. The higher the index, the higher the position of the element to users-view. So I set the z-index to a high value but in IE 7 nothing happened.

Continue reading ‘How to use position-absolute and z-index with Internet Explorer 7 and nested containers’

jQuery badBrowser Update Version 1.4

Time is running …

Hello!

Today you can download my new version from “jQuery badBrowser Script” . Why and how it works you can read in my last articles: Continue reading ‘jQuery badBrowser Update Version 1.4′

Problems after upgrading TYPO3 4.2 to 4.3 with stylesheets and images

TYPO3 Upgrade 4.2 to 4.3  – Backendview

Today i had some trouble after upgrading TYPO3 Installation 4.2.10 to 4.3.3 .
After the big security announcement i decided to update all costumers TYPO3 Installations.

Continue reading ‘Problems after upgrading TYPO3 4.2 to 4.3 with stylesheets and images’

How to add german Amazon.de OpenSearch Plugin to Firefox 3.5 on Ubuntu 9.1

How to …

Today i wanted to search with my current Ubuntu 9.10 Karmic Koala Installation and Firefox Browser 3.5 with a OpenSerach Plugin in german Amazon store.

The standard Installation of Firefox only provides the amazon.com Search Plugin. The normal way to add SearchPlugin doesn’t work on amazon.de with Ubuntu Firefox :-(

I found after a short search one nice overview: http://mycroft.mozdev.org/amazon-search-plugins.html

Thank you! After clicking on “Amazon DE (Support Mycroft*) de-DE (amazon.de) by Mycroft Project” my german SearchPlugin works fine.

more SearchPlugins …. look here: http://mycroft.mozdev.org/

How to delete csc-default and id tag in TYPO3 4.3

How to …

Since TYPO3 Version 4.3 all the source code is tagged with unlovely id and class tags with div-wrapper.

<div id="c1" class="csc-default">

But with one little typoscript snippet you will get rid off it:

tt_content.stdWrap.innerWrap >

Now everything looks clean and sweet. I love TYPO3 anyway!