简体   繁体   中英

How to use a template generated by joomla?

I will develop a website using joomla ,mysql,php,wampserver,dreamweaver

All my tools are ready(installed),and I will run the website on the localhost.

I have used joomla to choose a template, now in this phase I want to change the template to suite my website so I have choose dreamweaver to manage my pages(add my own logo and forms..).

But I don't know now what to do.

What I have tried:

Create from dreamweaver a new website with the following parameter:

name :test

Http adresse: http://localhost

Technologie:php/mysql

File : C:\\wamp\\www\\test\\

Now I want to use the template chosen from my website(copy and paste the directory of the website don't work)

How can I use the template from created website? And can I still manage the website named test from joomla administrator ?

Update

I have installed the template following this link : http://www.siteground.com/tutorials/joomla15/joomla_templates.htm

and I found a component that allow me to add a form : http://extensions.joomla.org/extensions/contacts-and-feedback/forms/4939

but still dont know how to modify the template add logo for example

Firstly, uninstall Dreamweaver and never set eyes on it again.

All you need is wamp and a Joomla package.

Update:

If you use Firebug or Chrome Dev Tools and inspect the element, you will see the following code which is located in template.css on line 156:

#logo {
    float: left;
    height: 22px;
    overflow: hidden;
    padding: 12px 14px 0;
    width: 320px;
}

To add a logo of your choice, you can add something like the following:

background: url(http://joomla15.siteground.com/FaceBook.png) no-repeat;

So you final code will look like:

#logo {
    float: left;
    height: 22px;
    overflow: hidden;
    padding: 12px 14px 0;
    width: 320px;
    background: url(http://joomla15.siteground.com/FaceBook.png) no-repeat;
}

You can obviously change the height and add extra bits if you please.

Hope this helps.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM