Fast Template Design In Joomla Cms - Basic knowlege of Html needed

free web hosting
Free Web Hosting, No Ads > CONTRIBUTE > Tutorials

Fast Template Design In Joomla Cms - Basic knowlege of Html needed

matak
Joomla is one of the most powerfull CMS sistems around. It is free under GNU/GPL license and everyone with simple knowlege of webdesign (and even without it) can use it for it's website. For now the only way i know on how to design a template in joomla is by using Dreamweaver and Joomla (joomlasolutions1.0.mxp-dreamweaver.mxp) extension for dreamweaver!

Template design in joomla is quite simple really. This template that i'll show you is the most simplest of them all, but it's enough for one to learn Basics of template design. Further notice is that this is not the first tutorial made on joomla template design but it's not copy/pasted in order to score some credits. I'm designing a new template for my website, and that is why i think that parallel to designing one template i could make tut on how to do it.

How does this tut differ from others?
Well i'll put all of those xml and a full basic template for download from my website so practicly you can simply edit it and ta-da you have your template -- the original smile.gif

Let's get started!!!

1st Tools i'll be using for design

--Macromedia Dreamweaver
--Joomla Extension for Dreamweaver (DL Here, to install it use Extension Manager in Macromedia Folder)
--Gimp / Photoshop / Paint / Corel (whatever best suits your needs)

2nd Files that you can simply download and are basicly standard to all templates

Joomla template directory structure
- mytemplate (root directory)
-index.php
-templateDetails.xml
template_thumbnail.png (optional, a small screenshot of your template)
css (css directory, it is under (in) the root directory)
-template_css.css
images (for your images that in combination with smart use of CSS make your template unique)

You can download this set of files --HERE-- and then edit your template....

3rd index.php (what in it)

To create index.php simply open new php file in DW. and replace the code above </head> with this code...

CODE

<?php defined( "_VALID_MOS" ) or die( "Direct Access to this location is not allowed." );?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php if ( $my->id ) { initEditor(); } ?>
<meta http-equiv="Content-Type" content="text/html;><?php echo _ISO; ?>" />
<?php mosShowHead(); ?>
<?php echo "<link rel=\"stylesheet\" href=\"$GLOBALS[mosConfig_live_site]/templates/$GLOBALS[cur_template]/css/template_css.css\" type=\"text/css\"/>"; ?><?php echo "<link rel=\"shortcut icon\" href=\"$GLOBALS[mosConfig_live_site]/images/favicon.ico\" />"; ?>


If you installed joomla extension go to Insert --> Insert Head Code (same goes for the rest of the code, but i posted code so even someone without dreamweaver can create his template...

Save this in your root directory as index.php

If you read this code you might see some definitions inside, like where is css, or favicon. You can change those locations, but i wouldn't do that beacouse i don't know how would joomla behave after those changes..

4th Getting some unique touch for your template

4th step in joomla template design is the part where you define your template layout. Now as much as you want to be original there are some basic things you maybe don't know about webdesign.
This question of ORIGINALITY in webdesign is much relative. As we all would like to have websites that differ from each other it isn't that smart to do that. Beacouse what W3C is trying to do is to find some UNIVERSAL way in designing websites, so that users don't have to think that much where links are or how the page is organized.
If you want your personal website then maybe joomla isn't for you, but you can use it anyway.
This template i'm creating is pretty much standard one with header on top, left and right menus and content in middle. I just like it that way and i don't have the need to making anything more special than that.

Tables, tables and more tables. Everything is in tables.

Create a table of 3 rows, you can strech it define its width by pixels or percent align it as you like..

Put your mouse in 2nd row and create another table, this one with 3 columns, also you can define columns width and alignment as you like it to be -- your way.

5th Adding thing needed for joomla to function...

--Insert Main Body Code (2nd row middle column)
CODE

<?php mosMainBody(); ?>

--Insert Left Modules Code (2nd row left column)
CODE

<?php mosLoadModules ( 'left' ); ?>

--Insert Right Modules Code (2nd row right column)
CODE

<?php mosLoadModules ( 'right' ); ?>


In tutorial i'm using he used user1 and user2 modules. I won't beacouse i'm just intrested will it work without it. If it wouldn't work i'll add them later...

--Add a search bar.. (i would like it to be on top left of my template, but for now let's just put it near right module
Just paste this code
CODE

<form action="index.php" method="post">
          <div align="center">
            <input class="inputbox" type="text" name="searchword" size="15" value="<?php echo _SEARCH_BOX; ?>"  onblur="if(this.value=='') this.value='<?php echo _SEARCH_BOX; ?>';" onfocus="if(this.value=='<?php echo _SEARCH_BOX; ?>') this.value='';" />
            <input type="hidden" name="option" value="search" />
          </div>
</form>

before this code
CODE

<?php mosLoadModules ( 'right' ); ?>


6th I'm still not sure is this going to work beacouse i didn't put many many features he put in his tutorial which i'm using to create template.

Let's define our templateDetails.xml
(open a file in DW or any other editor and save it as templateDetails.xml in template root directory)

PASTE THIS CODE INSIDE:

CODE

<?xml version="1.0" encoding="iso-8859-1"?>

<mosinstall type="template">

<name>mytemplate</name>

<creationDate>today</creationDate>

<author>Matak With Help Of Mambosolutions</author>

<copyright>This template is released under GNU/GPL License, of course it is</copyright>

<authorEmail>my@email.com</authorEmail>

<authorUrl>www.matak.trap17.com</authorUrl>

<version>basic</version>

<description>Simple template for simple website</description>

<files>

<filename>index.php</filename>

</files>

<images>

<filename>images/header.jpg</filename>

</images>

<css>

<filename>css/template_css.css</filename>

</css>

</mosinstall>


In this XML file you define your template files which are going to be installed with template. If you changed names of your files, let's say header, you need to change it here, if your template name differs from this here you need to change it.
All of this isn't esential, it might work even if you don't change some basic stuff, but in order to work properly change everything that needs changing...

Did you create it?

Good..

7th is defining CSS

Wow this CSS, you know when i started this webdesing thingy i learned about html, xml, php and somewhere somebody mentioned CSS. Well i thought i don't need to learn that. Boy i was wrong. CSS is the most important thing when it comes to webdesign. You can practicly create a whole website in CSS if you really know how.
Once you learn defining CSS from external file, which is piece of cake, you practicaly create one website and all other ones you create differ (except images) in CSS. So learn CSS, i'm trying to.

What we need to do is create a file called template_css.css and save it in our CSS folder.

PASTE this code inside

CODE

BODY {
margin : 0px 0px 0px 0px;
background-color : #FFFFFF;
color : #000000;
background-color: #F8F8FF;
scrollbar-base-color: #778899;
}
td, tr, p, div {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 11px;
color : #333333;
}
ul {
margin : 0px 0px 0px 0px;
}
hr {
background : #CCCCCC;
height : 1px;
width : 100%;
}
.title {
font-family: sans-serif;
font-size: 24px;
font-weight: bold;
color : #7B8DA1;
}
.pathway {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #000000;
}
a.pathway:link, a.pathway:visited {
color : #000000;
font-weight : normal;
}
a.pathway:hover {
color : #000000;
font-weight : normal;
text-decoration : underline;
}
/* --Default Class Settings-- */
a.mainlevel:link, a.mainlevel:visited {
color: #333333;
background-position: left;
text-align: left;
font-weight: bold;
}
a.mainlevel:hover {
color: #00000;
background-position: left;
text-align: left;
}
a.mainmenu:link, a.mainmenu:visited {
color: #333333; font-family: Trebuchet MS, Verdana, Geneva, Arial, Helvetica, serif;
font-weight: bold;
}
a.mainmenu:hover, {
color: #000000; text-decoration: underline;
}
a.sublevel:hover {
color: #000000; text-decoration: underline;
}
a.sublevel:link, a.sublevel:visited {
color: #333333; font-family: Trebuchet MS, Verdana, Geneva, Arial, Helvetica, serif;
font-weight: normal;
}
table.moduletable {
margin: 0px 0px 0px 0px;
width: 95%;
border-left: solid 0px #000000;
border-right: solid 0px #000000;
border-top: solid 0px #000000;
border-bottom: solid 0px #000000;
margin-left: 5px;
}
table.moduletable th {
font-size : 11px;
font-weight : bold;
color : #000000;
text-align : left;
width : 100%;
padding: 10px 10px 10px 10px;
margin: 20px 5px 20px 5px;
}
table.moduletable td {
font-size: 10px;
font-weight: normal;
border: 1px solid #333;
padding: 10px 10px 10px 10px;
margin: 20px 5px 20px 5px;
background-color: #F8F8FF;
}
.poll {
font-family : Arial, Helvetica, sans-serif;
font-size : 10px;
color : #666666;
line-height : 14px;
}
.sectiontableheader {
background-color : #CCCCCC;
color : #7B8DA1;
font-weight : bold;
}
.sectiontableentry1 {
background-color : #F0F0F0;
}
.sectiontableentry2 {
background-color : #E0E0E0;
}
.small {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #3366C0;
text-decoration : none;
font-weight : medium;
}
.smalldark {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #000000;
text-decoration : none;
font-weight : normal;
}
.contentpane {
background : #FFFFFF;
}
.contentpaneopen {
background : #FFFFFF;
}
.contentheading, .componentheading {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 11px;
font-weight : bold;
color : #7B8DA1;
text-align : left;
}
.createdate {
font-family : Arial, Helvetica, sans-serif;
font-size : 10px;
color : #999999;
text-align : left;
}
.button {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-style : normal;
font-size : 10px;
font-weight : bold;
background-color : #F0F0F0;
color : #000000;
border : 1px solid #CCCCCC;
}
.inputbox {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #000000;
background-color : #F0F0F0;
border : 1px solid #CCCCCC;
}
a:link, a:visited {
font-size : 11px;
color : #000000;
text-decoration : none;
font-family : Verdana, Arial, Helvetica, sans-serif;
}
a:hover {
color : #000000;
text-decoration : underline;
}
/* For content item titles that are hyperlink instead of Read On */
a.contentpagetitle:link, a.contentpagetitle:visited {
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
font-weight: bold;
color: #000000;
text-align:left;
}
a.contentpagetitle:hover {
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
font-weight: bold;
text-align:left;
color: #7B8DA1;
text-decoration: underline;
font-weight: bold;
}
a.category:link, a.category:visited {
color : #333333;
font-weight : bold;
}
a.category:hover {
color : #7B8DA1;
}
/* Styles for dhtml tabbed-pages */
.ontab {
background-color: #ffae00;
border-left: outset 2px #ff9900;
border-right: outset 2px #808080;
border-top: outset 2px #ff9900;
border-bottom: solid 1px #d5d5d5;
text-align: center;
cursor: hand;
font-weight: bold;
color: #FFFFFF;
}
.offtab {
background-color : #e5e5e5;
border-left: outset 2px #E0E0E0;
border-right: outset 2px #E0E0E0;
border-top: outset 2px #E0E0E0;
border-bottom: solid 1px #d5d5d5;
text-align: center;
cursor: hand;
font-weight: normal;
}
.tabpadding {
}
.tabheading {
background-color: #ffae00;
text-align: left;
}
.pagetext {
visibility: hidden;
display: none;
position: relative;
top: 0;
}
/* for modifying {moscode} output. Dont set the colour! */
.moscode {
background-color: #f0f0f0;
}
/* Text passed with mosmsg url parameter */
.message {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
font-size : 10pt;
color : #ff6600;
text-align: center;
}
/* custom stuff */
.container
{
border: solid;
border-width: 1px;
border-color: #efefef;
background-color: White;
}
.boxes {
border: solid;
border-color: #efefef;
border-width: 1px;
}


That is your CSS. Define it as you wish, i'll just leave it like that and then see how will it behave when i install template. It is easy to change anyway..

8th Adding images to template...

This is simple...
Place your self wherever you want to add image and ADD it... smile.gif
Now only thing you need to think about is this.. After adding image lets say header.jpg code should look like this
CODE

<img src="templates/mytemplate/images/header.jpg">


You could make a mistake here by putting source from src="images/header.jpg" but then joomla will look for your image in it's IMAGES folder, and that could be error, beacouse your template is installed in templates folder. I don't think i need to explain this problem further...

9th step.. Install and test your template...

ZIP your template, go to joomla administrator panel, installers -- template - site, browse your folder and install...

It should look something like this*

If this tutorial didn't help you try this one:

As you can see by clicking on links on my site, that menus arange by middle of table. Well that is what you have to define when creating those tables...

hope this helped smile.gif

*it may not look something like that beacouse site is in development, and currently i'm trying to figure the minimum of CSS needed to have a nice looking website.

 

 

 


Reply

serverph
there are some files for download you might have forgotten to link here. smile.gif like the Joomla Extension for Dreamweaver and the Joomla template directory structure files set. at least you said a download is available from your tutorial above. would be more useful if you can link them later, as your tutorial defines.

i have an ulterior motive in pointing this out. heheheü i might want to create my own joomla template in the near future, and i would want the files ready at hand later. biggrin.gif btw, is the DEMO template you linked in the end part of your tutorial working (http://matak.trap17.org/)? it looks like it's still a default godaddy parking page at the moment... or is it not?

edit: i think you ought to revise the link you have posted for the demo template. smile.gif i believe it should have been http://matak.trap17.COM instead of .ORG. checked it, and your joomla installation is under trap17.COM. biggrin.gif

 

 

 


Reply

matak
all of the files are available for download, which you could figure out if you read the post...
i didn't put joomla extension beacouse it's easy to google it, and if you are using this tut you don't even need it
my website is in total development. i posted this tut in desperate needs for credits, and i think it can really be helpfull.

if you know basic html - developing a template in joomla is simple, beacouse you build your plain html or even FLASH site, and just add this joomla pieces of code.
the only need in your html site that joomla is using is CSS and that is why joomla looks like it looks.

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Recent Queries:-
  1. rapid joomla templatedetails.xml generator .zip - 41.52 hr back. (1)
  2. fast template joomla - 61.61 hr back. (1)
  3. html input type="text" dir="rtl" bracket problem () - 71.46 hr back. (1)
  4. what is outset #e0e0e0 in html? - 71.85 hr back. (1)
  5. joomlasolutions1.0.mxp скачать - 111.75 hr back. (1)
  6. telecharger joomlasolutions1.0.mxp - 131.45 hr back. (1)
  7. joomla change header.jpg only in a page - 138.07 hr back. (1)
  8. joomla dreamweaver photoshop template design tutorial - 162.78 hr back. (1)
  9. joomlasolutions1.0.mxp - 84.51 hr back. (2)
  10. templates free joomla clean intitle:fast load - 238.05 hr back. (1)
  11. is div structure for joomla template is more useful than table structure? - 241.82 hr back. (1)
  12. joomlasolutions1 - 264.16 hr back. (1)
  13. make html tables in joomla - 269.32 hr back. (1)
  14. change table font family joomla - 279.79 hr back. (1)
Similar Topics

Keywords : fast, template, design, joomla, cms, basic, knowlege, html, needed

  1. Create Dynamic Html/php Pages Using Simple Vb.net Code
    Taking your application data, and creating a webpage for others to vie (1)
  2. Add Flashing Inbox To Invisionfree Forum
    Html code for invsiionfree!! (2)
    Do you find it annoying when you are on your invisionfree forum, and you get a new message, and it
    ends up taking you 5 minutes to notice? This code makes the inbox link flash bold red saying how
    many messages you have. In version 1 the word inbox stays the same, and doesnt change at all (for
    Example this is flashing: Inbox (2) In version 2 (the second code) the word inbox changes to
    messages (constantly, so that if you have none, it says messages (0) instead of inbox (0). It still
    flashes Red Put the following In the Header and Body Section (Admin Cp>>>Skinning ....
  3. How To: Html Tables.
    I find these really useful. (8)
    If you are a novice web designer, but want your site to look advanced and proffessional, then what
    better way to do so than to use HTML tables? HTML tables are a really easy way of formatting your
    text, to make your ste look proffesional. It looks good, and its easy, what more can you ask for?
    You have to use the tag, so first lets start off with: HTML Table > /table > In
    between theese two tags, we will add the data for the table, using the tags and . =Table
    Heading (Title) =Table Data (what you want in the table) =table row (new row) So, lets ....
  4. [php] Clean Code Functions
    Clean up your html output from php scripts (5)
    There is another Topic about writing 'clean' HTML code posted elsewhere on the Forum.
    I'll edit this Topic and add the link so you can review it on your own, and there is no need for
    me to comment on it in this thread, but the purpose of this Topic is to introduce a pair of
    functions which can be used for making sure that the HTML output from my scripts is readable when a
    view-source is reviewed. Two handy functions are included here. They work together quite nicely,
    and I will start this Tutorial with a short summary of the reasons for their 'being....
  5. Cakephp On Ubuntu
    using your own public_html folder (0)
    Hi, there are many tutorials about this, but i would like to type the steps i followed in order to
    get cakephp working on my user public_html folder. as many of you probably know, if you have
    apache's userdir module loaded, you can put your web pages on /home/user/public_html , and
    access them with the url: http://localhost/~user/ . I really prefer this, so all my web pages are
    on my personal home, but how to configure cakephp to work with these paths, i got a hard time with
    this, but finally got it!. here's how: in case you don't have apache2's u....
  6. Html Span
    (7)
    HTML Span Description The span tag is quite the handy tag to have at your disposal. You can use
    it for everything from Text Formating, to creating a scrollable text area. When combined with CSS it
    becomes an easy-to-use tool for making your website as uniform as possible, as your not bogged down
    with tags for every heading and title on your website. Try It Out CODE <html>
    <body> <div class="content"> <span class="heading1"> Heading
    or title goes here. </span><br><br> All the content insi....
  7. Html Bdo...
    (13)
    Description I find that it is often difficult to write a sentence backwards, but thanks to HTML, I
    can now complete this task in only a few seconds. Now the only problem is it is very difficult to
    read... Try It Out Welcome to one of the most useless functions of HTML. The tags enable you to
    write a sentence backwards. The code is quite simple. CODE <bdo dir="rtl">I
    find that it is often difficult to write a sentence backwards, but thanks to HTML, I can now
    complete this task in only a few seconds. Now the only problem is it is very difficult to r....
  8. Want-to-start Html Tutorials
    An HTML tutorial that covers the basics (2)
    NOTE: Don't use a rich text editor* for writing HTML code! Use Notepad in Windows,
    SimpleText in Mac or TextEdit in OSX, but you must set the following preferences for the HTML code
    to work! In the Format menu, select Plain Text. Open the preferences window from the Text
    Edit menu, then select "Ignore rich text commands in HTML files." Start Creating Your Own HTML
    File You can either use HTM or HTML file extensions. For more information, visit:
    http://filext.com/file-extension/htm for HTM or http://filext.com/file-extension/html for HT....
  9. Creating Navigation For Html Websites
    Have a common navigation menu for the whole website! (12)
    Pre-requisite: HTML, inline frame tags 1 Attachment(.zip) included. Updates : 29-12-07: Doctype
    added in example files (Advised by jlhaslip) Designing a whole website takes a lot of planning
    and organization. Designing a proper navigation system is a basic step in building your website. If
    you are developing webpages in html you would have observed that as you go on creating pages it
    becomes difficult to maintain the links to the pages. This article will guide you in developing a
    common navigation menu for your website. It describes three ways, so if you don'....
  10. Create A Simple Html Editor With Php And Javascript
    (3)
    Ok, I will teach you how to create a simple HTML editor that runs online with buttons that add HTML
    tags. Before we start: You should have basic knowledge of these languages. HTML/XHTML
    Javascript PHP You will need Ability to use filesystem functions. Chmodding abilities
    Features of Editor Online PHP safe Full HTML support A Few Bad Features Can only create new
    documents or overwrite Fairly unsafe Now we are ready to begin. The PHP Script This will be
    our PHP script that we will use to make the file. Make a file called save.php Here is the....
  11. Html Legend
    Learn how to create a handy legend with HTML! (9)
    I think this is pretty neat... good for those people who maybe aren't that great at designing
    things but still want something to look nice.. CODE <fieldset> <legend>Legend
    title</legend> Content </fieldset> try it in note pad.. it looks nice...good for
    forums, sign up forms.......
  12. Spice Up Your Forms
    With a bit of CSS and HTML alignment (11)
    Ever wonder how to make those stylish forms you see everywhere? Well now it's your change to
    learn. This short tutorial will show you how to do exactly that. Here is a bit of css to spice
    up the form. I have included comments to explain what classes will change what in the forms.
    CODE <style type='text/css'> .form table { background-color: #187cae; }
    /*The following css class will change the table cells within the .form div */ .form td {
    background-color: #bbe0f4;            padding: 3px;            border: 0px;         ....
  13. Do You Want To Use Php Code In Your Html Pages?
    Within two minutes you will! (9)
    Whilst searching around for help to setup cutenews blog I came across a way to use php in html pages
    - lo and behold it works! so I thought I'd share it with you all (Unfortunately I can't
    remember the site so I wrote this up a couple of minutes after I did it:) ). This method requires a
    web server with apache installed. So, luckily for us all this covers the whole of Trap17... even
    Qupis /tongue.gif" style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" /> Just
    to make the point, this is in no way a difficult task and it doesn't requir....
  14. How To Make A Simple File Based Shoutbox Using Php And Html
    (8)
    A simple tut to make a simple shoutbox. Let me jump right in. First of all you need the standard
    equipment for PHP, an IDE like XAMPP and an editor like PHP EDITOR 2OO7. Were going to make a
    simple guestbook using three files, webpage.php, shout.php and shout.txt. Webpage.php can be
    changed to whatver you want, it will be the page on which the guestbok is shown, you could even use
    this code and add it to another php page n your site. Shout.php is the proccessing page and
    shout.txt is where the shouts are stored. Firstly we need to make the visual design of the box.....
  15. Simple Scripts In Html And Javascript
    Things like BackgroundColorChanger and so (7)
    like in the topic, here is a description how to change the Backgroundcolor "On The Fly", by klicking
    on a button or radio-box first, we ned the html-and body-tags, create a new html-file on your
    desktop and write the following: QUOTE <script language = "JAVASCRIPT">
    browser interpretation: html - tag means "hey, browser, here comes HTML" in the body-tag you define
    the looking of your site. you can add things like "bgcolor" for the background, "text" for the
    textcolor and link / alink / hlink / vlink to define the linkcolor ( ) the scripttag i....
  16. Document Type Declarations
    And why we use them in html pages (0)
    This code: CODE <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
    "http://www.w3.org/TR/html4/strict.dtd"> <html> <head>
      <title>HTML 4.0 Strict document</title>     <meta
    http-equiv="content-type"  content="text/html;charset=utf-8" >     <meta
    http-equiv="Content-Style-Type"  content="text/css" > </head>
    <body>      <p>... Your HTML content here ...</p>      <p>... More
    HTML content here ...</p>   </b....
  17. Integrating Html And Css Part 1
    (5)
    Ok. Well i am writing this as a series of tutorials i will be doing on this subject, so enjoy. I
    hope this helps. Introduction to HTML and CSS
    HTML and CSS are to work together. HTML is what puts the characters on the page, while CSS is what
    makes everything look outreageous! For instance, I would use HTML if i wanted to put "Trap17 is
    the poop!" onto my page, although if i wanted to make it look nice like this by adding a font,
    and maybe some color, then I would use CSS. Learn the HTML. Ok this is my lit....
  18. How To Create Html Page Anchors
    Click A Link And Take You To A Certin Place On The Same Page (5)
    Have you ever wondered how people have a normal link but all it does it take you to the middle of a
    long page? well here is a solution DEMO: Here Ok well first off for the link it will be just
    like a normal link code except you wont put a http://URL.com/file.php it will look somthing like
    this QUOTE name ">Click This Link! there must be a # sign in front of this to work..
    now, for the content that the person will be re-directed to after clicking the link QUOTE name
    "> the items in bold is what you need to change QUOTE name "> i....
  19. Php Menu Bulding Script And Site Template
    available for download (0)
    A Php Menu-builder Tutorial This Sidebar Menu-builder code and the php scripts are adapted from
    a Tutorial on the Astahost.com Forum titled : CMS101 - Content Management System Design .
    Since the original tutorial's author (vujsa) did such a marvellous job of describing the system
    in the original Topic posting, I will not attempt to explain it here, rather, I invite you to have a
    look at his Topic and learn from it. The Basic tutorial provided coding for developing a table-based
    web-site template which used php includes and embedded data to create a &....
  20. Multiple Classes In Html
    you can use more than one at a time (8)
    Multiple Classes in Css Styles Classes are used in html pages to give certain defined
    attributes to elements. They are useful when the attributes are to be used in more than one place on
    a page. (Named Id's are only allowed once per page, but I digress... might have a tutorial on
    that some day.) Sometimes you want Red text and sometimes you want Bold text. Easy enough to do,
    simply define a class and apply it to the element you want red or bold. Use this class where you
    want on the page, since classes are enabled to be used in several spots, for different u....
  21. [php] Prevent Copying A Template For Each New Page
    (0)
    This code means every time you make a page you don't need to copy and paste the HTML code for
    your template, this can make editing links, especially those that appear on every page, and pages a
    lot easier. 1. Make sure that your template is coded so it is fully expandable. 2. Insert this
    code into the content area of your template, and save the file as index.php, instead of .html
    QUOTE $val = $_GET ; // Replace id with whatever you want to use, eg ?id=page $val
    .= ".html"; // Makes the filename complete so if you called ?id=index, it would be i....
  22. Basic Html (for Us Kids)
    (23)
    What is HTML? HTML (hypertext markup language) is computer language that is used to webpages. It
    can be confusing to understand for some of us kids. HTML pages are text files that has of HTML tags
    (they can place the text or images whereever you want to place it), and text you can place between
    the tags so the text willshow up on your page when you put it on the WWW. Tags are instructions that
    tell your browser what to show on ya website. They break up your webpage into basic sections. All
    tags start with a (right bracket). If you are a starter you need 4 tools A....
  23. Saint-michaels Html Tips And Tricks #4
    been awhile so here somewhat new stuff (12)
    WEll its been awhile since i did so i will put up some more useful html tips and tricks here on
    trap17.com Ok for trick actually, want to know how some websites got those ool icons put on their
    website link in the favorites folder well here you go in 3 quick steps. 1. create an image then
    shrink it down to 16x16 and save it as avicon .bmp. 2. then change it to .ico, when is the file
    reconizing it as a icon., if you are having problems saving it, there are some resources out there
    that can change it for you. 3. load the image to your website and add this tag in betwee....
  24. Saint-michael Html Tips And Tricks Issue #3
    exploring meta tags and what uses they have (0)
    Todays issue we are going to talk about a bunch of good newbie stuff. The first is meta tags to
    make it easy use a generator, from my searches on the internet ther are soe many meta tags to use
    its not even funny but for those whoe like them is are the more common ones that are used for a
    website. QUOTE also for a dynamic look using the meta this called page
    fading so to speak, what it does when you click on a link the website will fade for a duration of
    time to the next page on your site warning it doesn't do anything when you first cl....
  25. Saint Michael Xhtml Tips And Tricks #1
    xhtml= html 5.0 :P (3)
    Well by the many views i have seen on my web design issues i should go into new territory, so im
    going start with some useful xhtml info for you web design fenatics, the info i present to you is
    from other websites so be warned it might or might not work all depends but lets start off with the
    basic info for using xhtml. Also this tutorial is for beginners so i won't be doing any xml
    info due to it being a more server side then actually webdesign 1. DOCTYPE this is used to tell
    the browser what kind of infomation it will be displaying. nothing as really changed....
  26. Saint-michaels Html Tips And Tricks Issue # 2
    some more tricks of the trade and some wierd stuff to (2)
    Well i thought it was time to bring in issue 2 of html tips and tricks and i found a very
    interesting html coding which i thought was funny as hell its called Preventing Search Engine
    Indexing this coding is used to keep your website from being index why i don't know why you
    don't want you website listed unless it someone stupid as in telletubbies.com but heres the code
    This tag tells the robots not to index this page and not to follow any links within the
    page. QUOTE This tag tells the robots not to index this page, but follow any links wit....
  27. Saint_michael Html Tips & Tricks Issue #1
    useful html stuff (1)
    this little trick i though was useful it used to send a visitor to another page using meta tag and
    it sends the user to another page with in a few seconds for example you will go to the new page in 5
    seconds CODE <META HTTP-EQUIV=REFRESH
    CONTENT="5;URL=http://www.yoursitehere.com"> and for those have a good knowledge
    of javascript they could use this script right here CODE <html> <head>
    <title>Refresh Page</title> <script language="JavaScript">
    <!-- var time = null function move&#....
  28. HTML tags and examples
    Condensed form of course from my site... (37)
    Well, I decided to try and help out some of the users here who might be unexperienced in HTML, so I
    condensed the begginer's HTML course at my website. Here it is... Lesson 1 HTML means Hyper
    Text Markup Language. HTML is a very common language used for many websites, is the base for more
    complicated and powerful langauges like php, HTML can seem hard, but you will find it is one of the
    easiest langauges one can learn. The core of HTML is the tag, a tage is just a set of two
    arrows-like brackets created by hitting Shift and the comma key, or Shift and the period....
  29. Html With Css
    a easy look at CSS (13)
    Cascading Stylesheets, or CSS, is a very easy way to spice up your web site. The thing I like about
    CSS, is it gives you a more extended version for styles. The tag for example is very limited with
    what it can do. With CSS though, you can do numerous things. from mouseovers (a:hover) to just
    changing a simple paragraph tag to a fancy one. there are two ways to incorperate the style
    sheet. the first one is to just put it inside your page: CODE <html> <head>
    <style> all the stuff would go here - </style> </head> ....
  30. How To Host Ur Own Site In 2 Mins Php+mysql Needed
    (34)
    QUOTE Run you're own server for testing phpmysql or just to host you're own website or
    for you're friends. -needS: a PC that's all 8) - How to ? download : CODE
    http://server.paehl.de/apache20.zip : 30 seconds Installing:---> 1 minute
    *********************************** Unpack the exe where ever you want. after unpack run
    serverinst.exe and change Servername and your e-mail. Start the following files one time:
    start_apache.cmd --> start apache as service mysql_start_as_service.cmd  --> dito for mysql
    mysql_first_st....

    1. Looking for fast, template, design, joomla, cms, basic, knowlege, html, needed

*RANDOM STUFF*





*SIMILAR VIDEOS*
Searching Video's for fast, template, design, joomla, cms, basic, knowlege, html, needed

*MORE FROM TRAP17.COM*
Similar
Create Dynamic Html/php Pages Using Simple Vb.net Code - Taking your application data, and creating a webpage for others to vie
Add Flashing Inbox To Invisionfree Forum - Html code for invsiionfree!!
How To: Html Tables. - I find these really useful.
[php] Clean Code Functions - Clean up your html output from php scripts
Cakephp On Ubuntu - using your own public_html folder
Html Span
Html Bdo...
Want-to-start Html Tutorials - An HTML tutorial that covers the basics
Creating Navigation For Html Websites - Have a common navigation menu for the whole website!
Create A Simple Html Editor With Php And Javascript
Html Legend - Learn how to create a handy legend with HTML!
Spice Up Your Forms - With a bit of CSS and HTML alignment
Do You Want To Use Php Code In Your Html Pages? - Within two minutes you will!
How To Make A Simple File Based Shoutbox Using Php And Html
Simple Scripts In Html And Javascript - Things like BackgroundColorChanger and so
Document Type Declarations - And why we use them in html pages
Integrating Html And Css Part 1
How To Create Html Page Anchors - Click A Link And Take You To A Certin Place On The Same Page
Php Menu Bulding Script And Site Template - available for download
Multiple Classes In Html - you can use more than one at a time
[php] Prevent Copying A Template For Each New Page
Basic Html (for Us Kids)
Saint-michaels Html Tips And Tricks #4 - been awhile so here somewhat new stuff
Saint-michael Html Tips And Tricks Issue #3 - exploring meta tags and what uses they have
Saint Michael Xhtml Tips And Tricks #1 - xhtml= html 5.0 :P
Saint-michaels Html Tips And Tricks Issue # 2 - some more tricks of the trade and some wierd stuff to
Saint_michael Html Tips & Tricks Issue #1 - useful html stuff
HTML tags and examples - Condensed form of course from my site...
Html With Css - a easy look at CSS
How To Host Ur Own Site In 2 Mins Php+mysql Needed
advertisement



Fast Template Design In Joomla Cms - Basic knowlege of Html needed



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE