Thứ Sáu, 22 tháng 8, 2014

Joomla 2.5, joomla 3.x plugin loadmodule by name

Content plugin:
 {loadmodule mod_name,mod_title,style}
Mod name: folder mode name
Mod_title:user1,user2,user3,name1,name2,name3...
Style: xhtml,none

Example:
{loadmodule mod_articles_category,user1,xhtml}
{loadmodule mod_articles_category,user2,xhtml}
{loadmodule mod_login,newlogin,xhtml}

Chủ Nhật, 10 tháng 8, 2014

CSS3 text view multi column


Detail: view multi column the same on word (office). Auto height, and balance text all column
CSS:
.divContainer {
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
}