Google Maps – InfoWindow layout broken
If you have, like me, your infowindow right corners broken, here's my solution :
Look at your CSS for something like :
If you find a max-width applied on your img tag, remove them and it should be ok
Tutorial – CSS display property
I've discovered an article that is perfect for CSS developers.
It contains the browser's compatibility table for each property's values.
An explication about each values.
At the bottom you have a little package of divs to test differents configurations.
TYPO3 4.4 beta 2 released !
Today, the TYPO3 community released the second beta of the upcoming version 4.4 of TYPO3. There is already a feature freeze in place since beta1, thus the last weeks have been all about bugfixing - over 80 changes were made during the development. Additionally, the last few features have finally made its way into the TYPO3 Core.
- 1-2-3 Installer with DBAL enabled
- Reorganized CSS Files in the Backend
- CSS and Javascript Concatenator and Compressor
- For all Developers: A Backend Debug Bar
- Updated Fluid and Extbase versions
Official post
Get your package
Bluefish 2.0
After several years of expectations, Bluefish 2.0 comes out. Bluefish is an IDE (editor) who joined the family of FDI.This new version is oriented web development in 17 languages. He wants light, fast and free but also open.Its opening can support many languages such as PHP, HTML, Javascript, XML, Python, Perl, CSS, SQL ...
Furthermore, many useful features for developers are available as syntax highlighting, multiple document interface, external program integration, synchronization, toolbar ...
It runs on : Debian, Ubuntu, Fedora, Gentoo, Mac OSX, AltLinux, OpenSolaris and Windows
Read the communicate
Including JS and CSS in WP Header
Lot of people add Javascript and Css file by "echoing" them from theyre extension.
WordPress allow you to add correctly them to the page's head by using two functions :
// Add a new script file wp_enqueue_script($handle, $src, $deps, $ver, $in_footer); wp_enqueue_script('jsfoo', '/wp-content/plugins/myplugin/JS/foo.js'); // Add a new stylesheet wp_enqueue_style($handle, $src, $deps, $ver, $media); wp_enqueue_style('main', '/wp-content/plugins/myplugin/main.css');
For more informations :
wp_enqueue_style();
wp_enqueue_script();
