0

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

4

1 に答える 1

0

まず、Dreamweaverをアンインストールし、二度と目を向けないでください。

必要なのは、wampとJoomlaパッケージだけです。

アップデート:

FirebugまたはChromeDevToolsを使用して要素を検査すると、156行目のtemplate.cssにある次のコードが表示されます。

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

選択したロゴを追加するには、次のようなものを追加できます。

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

したがって、最終的なコードは次のようになります。

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

必要に応じて、高さを変更したり、ビットを追加したりできます。

お役に立てれば。

于 2012-12-06T13:07:26.637 に答える