Why this kolavery D

Not to blame or criticize any forum member , I came the this forum post, about Hide YUI Console bar in Liferay 6.1 , but he was asked go to YUI Forum. as below

http://goo.gl/hh6Gk

 

In YUI Forum , He was advised to go to Liferay not in YUI Forum.

http://goo.gl/sU9Yb

This issue is related to Liferay Developer Mode in Liferay 6.1

If you are using Liferay Developer Mode by editing “portal-ext.properties” remove “javascript.log.enabled=true” or just keep only first three line remove other.

 

Liferay Dev Assistant firefox addon

This is very useful plugin for Liferay developers . This does not include development level debugging but rather front end like debugging style and javascript.

Features

  • Force a css reload
  • Force a javascript reload
  • When forcing a reload, the content won’t be minified.

View below video for installation and usage.

Download Liferay Dev Assistant for firefox

Top Five email newsletters

Email newsletters are very important to communicate with with employees and business partners , as this is very good way to keep them updated about what is going and whats coming next it could be event , book  , products.

Below is the list of some of the very good design and out of the box ready to customize as per requirement different color options to choose from.

1. My Business Email newsletter with template builder

Business email newsletter

This template have 12 color variants and 30+ different elements includes all the required and full layered PSD files for more look and feel customization. The big plus for this news letter is its comes with template builder view tour of template builder.

Preview and Buy $16

 2. The Multi Purpose HTML Email Template

Multi Purpose HTML email templates

MultiPurpose is a simple & professional email newsletter designed for all corporate   / hosting / personal / marketing / e-commerce purpose.

Compatible email clients Gmail, Yahoo Mail, Microsoft Outlook, Thunderbird, Hotmail, Apple Mail

Preview and Buy $15

3.Corporate Flexible E-mail Theme

Corporate Email Template

This is clean, minimalistic and flexible Corporate E-mail Template with 162 combinations.

Preveiw and Buy

4. Twenty in one Marketing email templates

20 modern corporate newsletter templates made in 9 different color schemes with inline CSS and flexible table structure for quick and easy layout manipulation

Preveiw and Buy

5. Delicious Mail – Email 2.0 design.

Web 2.0 Email Design

This is professional multi-usage email template which comes in 5 color themes, 12 layouts each, every one of them has light-dark gray backgrounds

Preview 

Post your comments below.

Very useful Liferay theme snippets

Creating Liferay themes require some practice in compare to another CMS, but once you follow guidelines and have some experience its simple process. Here is the list of some Interesting Liferay themes Snippets.

1. Different themes for Different languages.

Some time single portal will have different languages , and require different themes  for Right to Left and Left to Right language. Using simple minor css changes.

/* for left to right language */
.ltr ul li {
float: left;
}

/* for right to left language */
.rtl  ul li {
float: right;
}

Including css file specific to local in portal-normal.vm, which can have background Images as well.

#if($locale == "RTL")
<link rel="stylesheet" href="$css_folder/rtl-custom.css" type="text/css" />
#else if($locale == "LTR")
<link rel="stylesheet" href="$css_folder/ltr-custom.css" type="text/css" />
#end

Source: → http://www.liferay.com/community/forums/-/message_boards/category/4624761

Continue reading