Newsletter

Shopping Cart


Your Cart is currently empty.

Customer Login

Posts Tagged ‘Edit Joomla Templates’

Dreamweaver Joomla Template Kit

Wednesday, June 24th, 2009 by dhaval

Joomla 1.5.x Template Dreamweaver Extension

Made by Designers for Designers frustrated with Joomla Template design?
And not being able to use your visual layout program.
Well that’s why we made the Joomla Template Kit Extension.
You will be well on your way to designing Joomla templates like a pro.

Joomla template kit for Adobe Dreamweaver
Buy Now

These are the same tools that Media 65 uses to make custom templates and template conversions.
Start your own template design business. A small investment a large return!

Fast simple and easy!

After watching our Joomla Template Kit Training Videos.
This system will have you turning out Joomla templates like a factory.
With our extension your productivity will go up 110%.
We have made templates with this extension in 10 minutes flat.

Click here to see a Template Conversion Video in Ten minutes to prove it!

How?

There are a ton of reasons but I’ll start with a few.
J Xml Wizard Joomla uses an Xml file to install its templates.
Which is called templatedetails.xml this file holds a ton of information like the designers name, date,
version of the template and every file used in your design.
If you have twenty images well that’s twenty items that need to be written to the file.

Joomla Template XML Wizard

Joomla template details file also uses what are called module positions which also need to
be written to this file. Our J XML Wizard takes care of all this in one shot and more.

Joomla J CSS designer

CSS is not easy for even seasoned pros so we have made a special tool that maps out Joomla’s
CSS in Dreamweaver so you can not only ID the Joomla CSS class but see which parts are affected.

Joomla Css designer page

This tool is super powerful because it lets you see most of Joomla’s core components and Modules are
sectioned off and categorized in and out of Dreamweaver.
Our CSS styles are commented and broken down to parts for easy debugging.
So now you can style your layout and your inside content right in Dreamweaver.

Template conversions to Joomla

That’s right we have a tool for that to.
Now just to have full disclosure some templates just don’t convert well to Joomla.
It’s not anyone’s fault. Some templates just do not hold dynamic data well.
We have a special J tool that takes an HTML page or PHP page and
copies all the code inside the body tag’s which is where your layout is located.

Then it erases all the code inside the file that you’re converting.
It adds special Joomla header code then adds back your layout to the file.
So now you have your template almost converted to Joomla format.
You make a template with our Joomla template wizard which makes
the basic template files for a Joomla template for you.

Copy your converted template layout file and media files.
That you just converted to a Joomla format to the template folder made with our Joomla template wizard.

Delete the index.php file made by our template wizard and rename your HTML template file to index.php.
Copy your images to our image folder add your CSS styles to our styles.
Run our images wizards to convert your template images to work with Joomla.

Add your Joomla module positions to your index.php page with our
J module positions include tool. Then run J XML wizard and upload the
template to your Joomla testing server. Guest what you’re basically done.

Lastly there are a ton of features with our Dreamweaver extension.
But I don’t want you to see all your gifts in one shot.
For advance template designers we have J conditions which let you add
conditions to show and hide part of your template based on conditions.
Plus you can add your own custom Joomla Module positions names
and styles
with our extension and use them on other template projects.

Other wizards let you add Adobe Flash to your Joomla Templates and our
image wizards convert images to Joomla and back to Dreamweaver viewable format in one click.
Joomla Template Kit 3.X Manual and “How to videos” available online.

Product software License and upgrade policy!

Product license:
One time cost for Life time License of $99.99 USD
Joomla Template Kit license allows you to run the software on your computer indefinitely.
Along with this license, you will receive one year of free updates.
Beyond the first year, you will have to pay a nominal fee, Currently $35.00* USD, to obtain updates for an additional year.
This is not “Recurring Billing” you choose to upgrade or not.
You will “not” be billed automatically.

**Note: License all rights reserved we reserved to change the terms of the EULA*
Please note: This Product is download only! at this time.
The files are very large 100MB* to 480MB plus.

You will need a fast connection a DSL or Cable Modem a true connection 256 KB Plus or Do Not Order!
All Companies Mention Names, Trademarks, Copyright are owned by the mention parties.

Source: http://www.howtomambo.com/articles-products-the-joomla-template-kit-dreamweaver-joomla-template-kit-1.html

Free Guide To Joomla Css

Tuesday, June 23rd, 2009 by dhaval

Joomla Template Kit Visual CSS Reference 1.0.X

Building on the CSS and the DOM there are many sections to the Joomla CMS.
We give you a foundation from which to start from.
Each section is broken down in as close to top down as possible.
See the sections menus on the left :

  1. Free Guide To Joomla Css
  2. General settings
  3. Layout settings
  4. Navigation section
  5. Standard module table
  6. Content - sections & categories
  7. Form section
  8. Tabbed editing

Joomla uses standard CSS you can use any styles you like.
Joomla contains core class’s that are used for module and component formatting
You may add to theses styles as you would any style sheet.

What is a Module?
Modules are containers blocks of data that are zoned and are included inside the template. They can hold any type of information. There are modules and module zones and blocks. A module in and of it self can be menu system a visitor poll etc.. a module zone is a place that you put the module like the left side of the page in a template. A Block is say the “top block” which is called a module position in Joomla can have many modules assigned to one block in a stacking order so the menu first and the poll is last so one block/position can store many modules.

Modules have a wrapper or I should say most have a wrapper.
A wrapper is a HTML code that could be a table it could be a DIV element and in one case no wrapper at all.

The wrapper can have special formatting applied to it but in most cases the that formatting is it part of the see “STANDARD MODULE TABLE” section. Also see extension help file for “Module Menu Styles” with shows the HTML code to the wrapper.

An example is the “.moduletable class”. Which in our style sheet is under
“STANDARD MODULE TABLE” this class is used by default in all of your core modules.
In DOM & CSS  you can give an HTML element formatting globally.
Lets say table element “table{Some formatting;}” in Joomla this works the same way.

In our example we use “table.moduletable{ Some formatting;}” this means the any table element in the module class will have
“{ Some formatting;}”.
Now as we should all know tables are made up of more then a table tag they also have “<TH>”<TD> and so on. So lets say we what to add formatting to the <TH> tag for a Table Header.

This means that you can override any style in almost any element in Joomla.
But you have to added the code class suffix to the style sheet and applied to the elements pages, sections, modules, categories etc.. if not the stock core styles will be applied by default.

What is Component?
A component is like a small application onto itself it displayed in Joomla.
There are core components and third party components. Core components share style sheets class’s for the most part. Which can be found in the CONTENT - SECTIONS & CATEGORIES section of our sheet. As with any CSS style class you can build on any element level so could override a global style by applying a local style to the class element.

For example you may have UL - Unordered list that is a general rule for all UL’s
on your page. Which would apply to a components styles by default. But this UL can be overridden by using “.blog UL{}” this would take over the style of the UL’s for this component class only all other would have the global UL formatting.

Third party components some use the cores styles some don’t you have to look at the documentation for the third party component.

We cover the core component class’s in the CONTENT - SECTIONS & CATEGORIES of the style sheet.

What we give you is a stander CSS style sheet the gives you a foundation for
to build on as you can see we can’t add every element because we don’t know what your designing.
So we give some samples to build on yourself.

Reference and Examples.
Any Standard Joomla Class can have:
| Optional HTML Element | CMS-CORE-CLASS | Optional HTML Element | .suffix or -suffix

All legal

.blog{}
table.blog{}
.blog th{}

Module Class Suffix
.moduletable.blueheader th{link to image;}

Component with Suffix
.blog.greytable{}
. componentheading-movingGif{}

Now a good question would be what are the core class?
It hard not give you a very long list.

“.moduletable” your going to use more the any core class see
STANDARD MODULE TABLE section.

Also under the CONTENT - SECTIONS & CATEGORIES look for the top class in order
.blog that would Identify a core class.

Another is “.mainlevel” this controls the formatting for the menu system. It also has a “.sublevel” for sublevel menus of the “.mainmenu” when you like to add new menu to Joomla and give that menu formatting other then “.mainlevel” use a class suffix. “.mainlevel.topnav{}” works just like the module example.
I would like to cover more of the menu but it’s a chapter itself on working the menu not the formatting more the menu system this should be enough to cover it as CSS goes. See NAVIGATION SECTION

Here is the base template_css.css file that comes with the extension.
We show you an image cutout of which part of Joomla is affected by what code sections.

Source: http://www.m65.net/articles-joomla!-knowledgebase-free-guide-to-joomla-css-51.html