Monday, March 14, 2011

Exclusive Free PSD Web Layout Template.

About a month ago we wrote a web layout tutorial, How to Create a Business Designed Web Layout, which was very popular with our readers. We came up with the idea that “why not share this PSD file?”, so we did. Now you can download and modify the web layout how you want. Also try to follow the tutorial, it is very instructive, and use this PSD to compare with!


Features

Here you can see all the futures that come with this .PSD file.
  • Featured Image
  • Everything Lined up with Guides
  • 1300px Width and 1400px Height
  • 6 Color Scheme Variations: Red, Orange, Blue, Light Blue, Green, Black
  • WeFunction Icons

Exclusive Free 10 Joomla Templates.

Joomla is a free open CMS (Contenet Management System) for publishing content on internet. Joomla CMS offer features like Caching , RSS feeds,  polls, blogs , search and web page printing. You can find top quality free Joomla templates in this post.
1- Creative Joomla Template
Creative Joomla Template
Creative Joomla Template
2- Digital Systems Joomla Template
Digital Systems Joomla Template
Digital Systems Joomla Template
3- Disco Beat Joomla Template
Disco Beat Joomla Template
Disco Beat Joomla Template
4- ElveSocial Joomla Template
ElveSocial Joomla Template
ElveSocial Joomla Template
5- Espresso Joomla Template
Espresso Joomla Template
Espresso Joomla Template
6- Forex Trading Joomla Template
Forex Trading Joomla Template
Forex Trading Joomla Template
7- NewsPro Joomla Template
NewsPro Joomla Template
NewsPro Joomla Template
8- Sea of Glass Joomla Template
Sea of Glass Joomla Template
Sea of Glass Joomla Template
9- Showcase Plazza Joomla Template
Showcase Plazza Joomla Template
Showcase Plazza Joomla Template
10- Top Gear Joomla Template
Top Gear Joomla Template
Top Gear Joomla Template
11- Violin Joomla Template
Violin Joomla Template
Violin Joomla Template
12- YouGames Joomla Template
YouGames Joomla Template
YouGames Joomla Template.

Free Exclusive Adobe InDesign Magazine Template.

More requests for free InDesign templates, particularly magazine templates are coming in lately, so I decided to share one today. This magazine layout looks more generic, suitably because it’s a template. Although magazine layouts have their own basic rules, it is most of the time effective when appropriately and creatively done out of the box or when you break some rules to make it more interesting. Good magazine layouts are not just good layout designs, every design element contributes their own unique part in making a design an aesthetic success.
This particular template should work with most general purpose magazines and can also be easily adjusted and tinkered for other types of magazine layouts. This template consists of 12 8.5 inches by 11 inches (letter) full-colored pages. Packaged rar file consists of the InDesign CS4 indd file, INX (interchange) file, fonts and link images. Download from the link provided below and enjoy.

Front cover


Spread 1 (pages 2 & 3)


Spread 2 (pages 4 & 5)


Spread 3 (pages 6 & 7)


Spread 4 (pages 8 & 9)


Spread 5 (pages 10 & 11)



Tuesday, March 8, 2011

Joomla / Mambo Layout


 What you can learn?

Reading this article will give you:
Layout explained
As you can see from Picture 1, Joomla / Mambo layout looks quite the same as any standardized portal webpages with 5 main parts:
  1. Top: <pathway>, <user3> and <user4> modules.
  2. Left: <left> module.
  3. Center: <banner>, <user1>, <user2> and <mainbody> modules.
  4. Right: <right> module.
  5. Bottom: <footer> module.
This is just a default layout, all modules can be placed anywhere defined in the index.php file of the template. The syntax of loading modules PHP code as follows:
mosLoadModules( $position_name [, $style] )
With Joomla 1.0.1 / Mambo 4.5.2 and older versions, we have 0 (default), -1, 1, -2 or -3? for the $style of Joomla / Mambo. In Joomla / Mambo 4.5.2.1 the value "-3" for the $style was introduced. So what are the differences of using 0, -1, 1, -2 or -3? [ see (c) in Picture 1 ]
module Title
Module output
Module Title
Module output
Module 1 OutputModule 2 OutputModule 3 Output

Module Title

Module output

Module Title

Module output
I myself really like features of the new "-3" style. Using the "-3" will help you to create stylish rounded corners template for Joomla / Mambo. Step-by-step on how to create a rounded module is guided in this tutorial.

Tricks to hide / display modules wisely.

Obliviously in Joomla / Mambo templating, you have to preserve an area for a module to display. This area is often created with a fixed width block using <table, <td> or <div> tags . And the outcome of of this is when the module you desire to display is unpublished, the block you preserve will still be there, creating an ugly blank area and take the space of other contents. Therefore, a simple solution using if {} condition + mosCountModules syntax will be a perfect workaround. [ See (b) in Picture 1 ]
The sample code you see in Picture 1 is a standard one, a more complex if {} will produce a better result and remove unnecessary HTML codes. For example:
0 && mosCountModules( "user2" )>0) {
  $numblock = 2;
  $blockwidth = 50;
 }else if (mosCountModules( "user1" )>0 || mosCountModules( "user2" )>0) {
  $numblock = 1;
  $blockwidth = 100;
 }
?>



 0) { ?>
 
 
   

I use above codes in MBT GREY template to organize user1 and user2 modules. Those advanced if {} codes will divide user1 and user2 display areas into 2 equal boxes if both are published [Picture 2]; stretch the box to fit with the main content when one of them is unpublished [Picture 3] and, of course both will be totally removed when they are unpublished.
User 1 and User 2Picture 2: User1 and User2 published Picture 3: User1 published, User2 unpublished
Though the above tricks can be applied in all modules (especially left, right, top, users), to some standard modules which are often the "must have" modules of a your site like search (user4) , topmenu (user3), pathway (pathway), and mainbody (mosMainBody) then a simple if {} is enough. [ See (a) in Picture 1 ]
Bottom lines.
There are other 2 functions that are quite useful in Joomla / Mambo templates:

or:
Finally, this tutorial is written for Joomla 1.0.1 / Mambo 4.5.2.3 and also true to all versions up to now, Joomla / Mambo is developing everyday and there will be more interesting functions and features for template designers. I will try to keep this article updated.
{mosgoogle center}