L’amico Alessandro di Xaldesigner ha pubblicato le risposte ad una mia brevissima intervista dedicata al (blog) marketing , ai blog e al web design che ci gira intorno. Tra le domande (argomento. …
Entries from December 2009
Resources Roundup Dicembre – 10 Icon Pack e le Migliori Selezioni …
December 30th, 2009 – No Comments
Tags: Intervista · Risorse-Infomarketing
GeoPortal HotSpot: feedback certificati e disintermediazione …
December 18th, 2009 – No Comments
La seconda parte dell’ intervista a Gabriele Petroni sul progetto GeoPortal HotSpot per le strutture ricettive. Feedback certificati e disintermediazione.
Tags: Business Online · Intervista · Risorse-Infomarketing
Social Media Marketing e SEO – Intervista a cura di Mirko D …
December 16th, 2009 – No Comments
In occasione del convegno GT 2009, tenutosi a Riccione il 5 e 6 Dicembre, ho avuto il piacere di incontrare un gran numero di amici e professionisti del se…
Tags: Intervista · Risorse-Infomarketing · Video · google
INTERNATIONAL MARKETING COMMUNICATION: Il settore delle Ricerche …
December 15th, 2009 – No Comments
Il settore delle Ricerche di Mercato in Italia. Intervista a Giorgina Baldi (Leader Field – Marketing Research, Milano). Come sono cambiati negli ultimi tre anni bisogni e comportamenti dei clienti del settore? …
Tags: Ebooks · Intervista · Risorse-Infomarketing · Viral Marketing
Comic Strips from Thedoghousediaries.com
December 14th, 2009 – No Comments
I recently stumbled across a comic strip website called Thedoghousediaries.com . I really liked the stuff they had on there. Here are the good ones that I found. Enjoy and leave a comment! Share this on del.icio.us Digg this! Post this on Diigo Share this on Reddit Stumble upon something good? Share it on StumbleUpon Share this on Technorati Share this on Mixx Tweet This! Subscribe to the comments for this post? Add this to Mister Wong
Tags: Comic Strips · Fun · Funny Comics · Funny Pictures · Risorse-Infomarketing · google
Links for 2009-12-13 [del.icio.us]
December 14th, 2009 – No Comments
Make: Online : Open source hardware 2009 – The definitive guide to open source hardware projects in 2009
Tags: Risorse-Infomarketing
Links for 2009-12-13 [del.icio.us]
December 14th, 2009 – No Comments
Make: Online : Open source hardware 2009 – The definitive guide to open source hardware projects in 2009
Tags: Risorse-Infomarketing
Conversion Rate: L’importanza delle parole
December 12th, 2009 – No Comments
Se non sapete co’è il Conversion Rate ve lo spiago subito: Si tratta della percentuale di utenti del nostro sito che riusciamo a “convincere” ad effettuare una determinata azione. Può trattarsi dell’iscrizione ad una Newsletter o l’acquisto di un prodotto a seconda del genere di sito che gestiamo. Ad esempio se ogni cento visitatori del [...]
Tags: Risorse-Infomarketing
10 CSS Snippets to Save Precious Time
December 12th, 2009 – No Comments
Today, I have compiled a set of 10 CSS snippets that can save you a lot of time and effort. These codes are needed frequently when developing CSS-based websites or themes. Just bookmark these codes (Ctrl + D) so that you don’t have to look for them on the Internet every time. 1. CSS Tooltips Through this code, you can have your own tooltips using just CSS. This is the CSS code :- a:hover {background:#ffffff; text-decoration:none;} /*BG color is a must for IE6*/ a.tooltip span {display:none; padding:2px 3px; margin-left:8px; width:130px;} a.tooltip:hover span{display:inline; position:absolute; background:#ffffff; border:1px solid #cccccc; color:#6c6c6c;} Now, use the tooltips like this :- Easy <a class="tooltip" href="#">Tooltip<span>This is the crazy little Easy Tooltip Text.</span></a>. 2. Eric Meyer’s Reset Code HTML tags on different browsers have their own formatting and styling. To reset all that and bring everything to ground zero before starting to code, just add these lines at the beginning of your CSS file. html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ”; content: none; } /* remember to define focus styles! */ :focus { outline: 0; } /* remember to highlight inserts somehow! */ ins { text-decoration: none; } del { text-decoration: line-through; } /* tables still need ‘cellspacing="0"’ in the markup */ table { border-collapse: collapse; border-spacing: 0; } 3. Handy CSS Debugger This code will add different color borders around your assets depending on its level. At each level in the hierarchy the color changes so you can see when “depth” changes. You can comment it out if you don’t need it. * { outline: 2px dotted red } * * { outline: 2px dotted green } * * * { outline: 2px dotted orange } * * * * { outline: 2px dotted blue } * * * * * { outline: 1px solid red } * * * * * * { outline: 1px solid green } * * * * * * * { outline: 1px solid orange } * * * * * * * * { outline: 1px solid blue } 4. Centering a DIV of Unknown Width You can easily center a DIV by using margin:auto; property when you have mentioned its width in your CSS. But in case you wanted to center a DIV with unknown width, here is the code to do so :- .content { margin: 0 auto 8px; display: table; } .content div { display: table-cell; } <!–[if IE]> .content { display: block; text-align: center; } .content div { display: inline; zoom: 1; } <![endif]–> 5. Adding AJAX style Loading Icon to Large Images Instead of using any kind of JavaScript to add a loading icon before your large image is loaded, you can use this simple CSS technique. Just use the following class in the same DIV where you are calling the large image. Make sure the path to the small loading.gif is correct. .loading { background: url(loading.gif) no-repeat center center; } 6. CSS Image Preloader In case you need to preload images before the loading of your page completes, use the following technique. Just add the images’ paths to the DIV class, and call the DIV in your HTML. The DIV will not be visible but the images will preload nicely. div.loader{ background:url(images/hover.gif) no-repeat; background:url(images/hover2.gif) no-repeat; background:url(images/hover3.gif) no-repeat; margin-left:-10000px; } 7. CSS Opacity Hack You can set opacity of any asset by using the following codes (to achieve transparency) :- selector { filter: alpha(opacity=60); /* MSIE/PC */ -moz-opacity: 0.6; /* Mozilla 1.6 and older */ opacity: 0.6; } 8. Min-Height for IE and all other browsers Since min-height doesn’t work in IE, this code makes up for IE’s shortcomings. The first part of the code is the correct code that works in Firefox and Safari. The second part of the code is for IE. Internet Explorer will ignore min-height and is just given a height of 8em. The IE bug automatically expands the container to fit the extra text. /* for browsers that don’t suck */ .container { min-height:8em; height:auto !important; } /* for Internet Explorer – which of course sucks */ /**/ * html .container { height: 8em; } /**/ 9. Styling Links by File Type You can easily style specific URLs by using icons. This works only with CSS3 compatible browsers and degrades nicely with non-compatible browsers. Make sure to change the icon image paths. /* external links */ a[href^="http://"] { padding-right: 13px; background: url(external.gif) no-repeat center right; } /* emails */ a[href^="mailto:"] { padding-right: 20px; background: url(email.png) no-repeat center right; } /* pdfs */ a[href$=".pdf"] { padding-right: 18px; background: url(acrobat.png) no-repeat center right; } 10. Remove Textarea Scrollbar in IE IE has this nasty habit of showing a scrollbar in the textarea even when the content is inside the textarea. To avoid this, use the following code :- textarea{ overflow:auto; } Share this on del.icio.us Digg this! Post this on Diigo Share this on Reddit Stumble upon something good? Share it on StumbleUpon Share this on Technorati Share this on Mixx Tweet This! Subscribe to the comments for this post? Add this to Mister Wong
Tags: Code · Hacks · Resources · Risorse-Infomarketing · Snippets · css · firefox · google · tips
Forum su Turismo a Sanremo, ascolta l'intervista a Enrico Lupi …
December 9th, 2009 – No Comments
A seguire, saranno istituiti tavoli di lavoro per discutere temi specifici creando un momento di confronto e di riflessione costruttiva su diverse tematiche: “ Marketing alberghiero e commercializzazione ondine”, “Il turismo e i casinò” …
Tags: Intervista · Risorse-Infomarketing
LogoBee Review
December 9th, 2009 – No Comments
LogoBee , one of the Internets most prominent online graphic design firms, is proud to resume its annual Logo Design Makeover for the fourth time. For a nominal price of $100, 10 selected nominees will get a complete Logo Design Golden Package (original value of $425). This package includes custom logo design, stationery design and 500 printed business cards. And that’s not all! The grand prize is a BundleBee Package. They are donating 2 BundleBee packages (logo design, stationery design and web design) for a nominal price of $500 (original value: $1199)! In the previous years, Logobee helped with the creation of a unique identity for 17 non-profit organizations. Seeing the results of one’s work is always a very pleasant experience. They got very positive feedback from these organizations. For instance, they helped the International Primate Protection League to refresh their website and magazine cover with the help of a brand new logo. LogoBee hopes that this year’s Makeover will be as successful as the previous years. About LogoBee: LogoBee is a multiple award-winning logo design company which has been in the business since the year 2000. LogoBee provides professional logo design, web design, stationery and more, all for affordable prices, with money-back guarantee and lifetime logo design support. For every project, they gather info from the client and also do a online research in order to get a better understanding of the company’s field of business and requirements. Before the creation of the logo, the project manager collects information about the client’s tastes, priorities and details about his company. After the initial logo package has been completed, it’s not over yet: a client can, for instance, choose the elements that appeal to him from different logos and ask the company to combine them into one. For instance, graphics from one designer, font from another. A client can also submit his own ideas that might have come to him on the basis of the initial samples. All designers at LogoBee are working in-house, in order to guarantee a better service and customer support. On the preview page , you can see 12 logos made for diverse companies in different graphic styles. Every single one of these logos is designed in order to reflect their company’s field of business and to give the logo a unique and memorable identity. Over the course of its existence, Logobee has created logo design for more then 10,000 companies. These days, most of their customers are returning, or have been referred by previous happy customers. On LogoBee’s website, clients can find information to help with the creation of a memorable logo, as well as branding and marketing. LogoBee also runs a blog, where they provide various tutorials and templates for the design community. You can also make extra money by joining their affiliate program. Anybody could earn a $20 referral fee, and referred clients will be motivated to use their coupon because they will also receive a $20 discount on their logo design purchase. Furthermore, when ordering a stationary design, the clients get 500 business cards printed in CMYK for free. Overall, LogoBee is not only one of the most respected logo design companies on the web, but also very active and implicated in the logo design community. Share this on del.icio.us Digg this! Post this on Diigo Share this on Reddit Stumble upon something good? Share it on StumbleUpon Share this on Technorati Share this on Mixx Tweet This! Subscribe to the comments for this post? Add this to Mister Wong
Tags: Reviews · Risorse-Infomarketing · google
Appleecious » Blog Archive » Editoriali: Intervista a Omar Cafini …
December 7th, 2009 – No Comments
Com’ è lavorare in un team e iniziare ad occuparsi di elementi nuovi come la promozione di un’applicazione, gli aspetti del marketing e della progettazione di nuove idee? Pensi che si tratti di una scelta che tutti dovrebbero prendere …
Tags: Grafica · Intervista · Risorse-Infomarketing · Utility
Links for 2009-12-06 [del.icio.us]
December 7th, 2009 – No Comments
Rapid Photo Downloader
Tags: Risorse-Infomarketing
Links for 2009-12-06 [del.icio.us]
December 7th, 2009 – No Comments
Rapid Photo Downloader
Tags: Risorse-Infomarketing
InformaticaEasy – Anteprima: InformaticaEasy alla presentazione …
December 7th, 2009 – No Comments
InformaticaEasy.net è stata invitata alla presentazione in anteprima del nuovo Sony Ericsson 2010, che vedrà la luce sul mercato solo il prossimo anno. Di seguito, video inediti ed un’esclusiva intervista al Marketing Manager Orazio …
Tags: Grafica · Intervista · Risorse-Infomarketing
























