|
|||||||
| Registrieren | Hilfe | Benutzerliste | Kalender | Suchen | Heutige Beiträge | Alle Foren als gelesen markieren |
|
#1
|
|||
|
|||
|
Hi,
i made a template with html, css and templavoila as the basic tutorial decribes http://typo3.org/documentation/docum....1.0/view/1/3/ , i used the same typoscript from that tutorial, evrythink works fine, the vertical menu on left too. The only think wich i dont understand, it uses standard javascript for the menu, i found that when i lookt in pagesource from webrowser, between the head section it includes those files. i want to change those thinks and i would like to know, how can i do that. i must say i installd the defualt Source+Dummy pakkage i couldnt find a tutorial about how to install only the source pakkage, so i installd source+dummy wich is easy .this r the files that page includes : <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <!-- This website is powered by TYPO3 - inspiring people to share! TYPO3 is a free open source Content Management Framework initially created by Kasper Skaarhoj and licensed under GNU/GPL. TYPO3 is copyright 1998-2008 of Kasper Skaarhoj. Extensions are copyright of their respective owners. Information and contribution at http://typo3.com/ and http://typo3.org/ --> <link rel="stylesheet" type="text/css" href="typo3temp/stylesheet_0215ea43e2.css" /> <title>Root page</title> <meta name="generator" content="TYPO3 4.2 CMS" /> <script type="text/javascript" src="typo3temp/javascript_93077bb238.js"></script> thanks in advance, alix _______________________________________________ TYPO3-project-templavoila mailing list TYPO3-project-templavoila (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-templavoila |
|
#2
|
|||
|
|||
|
On Mon, 28 Jul 2008 18:10:40 +0200, Alix Justus <alix.justus (AT) gmail (DOT) com>
wrote: [..] > > <link rel="stylesheet" type="text/css" > href="typo3temp/stylesheet_0215ea43e2.css" /> > <title>Root page</title> > <meta name="generator" content="TYPO3 4.2 CMS" /> > <script type="text/javascript" > src="typo3temp/javascript_93077bb238.js"></script> > > > > thanks in advance, > > > alix Hi Alix The two files, are automatic compiled files from typo3 and maybe extensions. and this is more general typo3 specific then templaVoila, for most Parte the css file contains the css defintions from css_styled_content to give a basic styling to the content an make thinks like different text+Image layouts work. its best to not touch the css file but rather include your own css file to overwrite rules you want to change. for the JS part. mostly it is only some script wich "blures" links after klick cause Internet explorer shows some ugly dotted line around links. if use default typo3 Javascript this code might be in there too.. this can be disabled via Typoscript Template option config.removeDefaultJS =1 if you want do build a "modern" javascript menu. you could relativ easyly do this by simply unsing the TMENU to render your menu code. an attach your own javascript via: page.includeJS.1 = fileadmin/myjavascriptmenu.js chris -- Christian Wolff // Berlin http://www.connye.com Latest Projects: http://www.bizim-tur.de/ | http://www.flycall.de | http://www.atr24.de _______________________________________________ TYPO3-project-templavoila mailing list TYPO3-project-templavoila (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-templavoila |
|
#3
|
|||
|
|||
|
thanks chris, for the javascrip disabling, for the first problem with css, i
do include my own css file, but it stil inclueds automaticaly its own css file with dafault tekst of developer Kasper Skaarhoj. I wil try to find the answer on typo3 mailing list. <!-- This website is powered by TYPO3 - inspiring people to share! TYPO3 is a free open source Content Management Framework initially created by Kasper Skaarhoj and licensed under GNU/GPL. TYPO3 is copyright 1998-2008 of Kasper Skaarhoj. Extensions are copyright of their respective owners. Information and contribution at http://typo3.com/ and http://typo3.org/ --> <link rel="stylesheet" type="text/css" href="typo3temp/stylesheet_0215ea43e2.css" /> 2008/7/28 Christian Wolff <Chris (AT) connye (DOT) com> > On Mon, 28 Jul 2008 18:10:40 +0200, Alix Justus <alix.justus (AT) gmail (DOT) com> > wrote: > > > [..] > > > > <link rel="stylesheet" type="text/css" > > href="typo3temp/stylesheet_0215ea43e2.css" /> > > <title>Root page</title> > > <meta name="generator" content="TYPO3 4.2 CMS" /> > > <script type="text/javascript" > > src="typo3temp/javascript_93077bb238.js"></script> > > > > > > > > thanks in advance, > > > > > > alix > > Hi Alix > > The two files, > are automatic compiled files from typo3 and maybe extensions. > and this is more general typo3 specific then templaVoila, > for most Parte the css file contains the css defintions from > css_styled_content > to give a basic styling to the content an make thinks like different > text+Image > layouts work. its best to not touch the css file but rather include your > own > css file to overwrite rules you want to change. > > for the JS part. mostly it is only some script wich "blures" links after > klick > cause Internet explorer shows some ugly dotted line around links. if use > default > typo3 Javascript this code might be in there too.. > > this can be disabled via Typoscript Template option > config.removeDefaultJS =1 > > if you want do build a "modern" javascript menu. you could > relativ easyly do this by simply unsing the TMENU to render > your menu code. an attach your own javascript via: > > page.includeJS.1 = fileadmin/myjavascriptmenu.js > > chris > > -- > Christian Wolff // Berlin > http://www.connye.com > > Latest Projects: > http://www.bizim-tur.de/ | http://www.flycall.de | http://www.atr24.de > _______________________________________________ > TYPO3-project-templavoila mailing list > TYPO3-project-templavoila (AT) lists...netfielders.de > > http://lists.netfielders.de/cgi-bin/...ct-templavoila > _______________________________________________ TYPO3-project-templavoila mailing list TYPO3-project-templavoila (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-templavoila |
|
#4
|
|||
|
|||
|
Hi Alix,
the default comment can be disabled via: config.disablePrefixComment = 1 the automatic-css <link rel="stylesheet" type="text/css" href="typo3temp/stylesheet_0215ea43e2.css" /> the automatic css file is inserted automaticaly by some extensions its mostly not a good idea to disable it. cause you want css_styled_content in general situations. chris On Mon, 28 Jul 2008 20:35:56 +0200, Alix Justus <alix.justus (AT) gmail (DOT) com> wrote: > thanks chris, for the javascrip disabling, for the first problem with > css, i > do include my own css file, but it stil inclueds automaticaly its own css > file with dafault tekst of developer Kasper Skaarhoj. I wil try to find > the > answer on typo3 mailing list. > > <!-- > This website is powered by TYPO3 - inspiring people to share! > TYPO3 is a free open source Content Management Framework initially > created by Kasper Skaarhoj and licensed under GNU/GPL. > > TYPO3 is copyright 1998-2008 of Kasper Skaarhoj. Extensions are > copyright of their respective owners. > Information and contribution at http://typo3.com/ and http://typo3.org/ > > --> > > <link rel="stylesheet" type="text/css" > href="typo3temp/stylesheet_0215ea43e2.css" /> > > > 2008/7/28 Christian Wolff <Chris (AT) connye (DOT) com> > >> On Mon, 28 Jul 2008 18:10:40 +0200, Alix Justus <alix.justus (AT) gmail (DOT) com> >> wrote: >> >> >> [..] >> > >> > <link rel="stylesheet" type="text/css" >> > href="typo3temp/stylesheet_0215ea43e2.css" /> >> > <title>Root page</title> >> > <meta name="generator" content="TYPO3 4.2 CMS" /> >> > <script type="text/javascript" >> > src="typo3temp/javascript_93077bb238.js"></script> >> > >> > >> > >> > thanks in advance, >> > >> > >> > alix >> >> Hi Alix >> >> The two files, >> are automatic compiled files from typo3 and maybe extensions. >> and this is more general typo3 specific then templaVoila, >> for most Parte the css file contains the css defintions from >> css_styled_content >> to give a basic styling to the content an make thinks like different >> text+Image >> layouts work. its best to not touch the css file but rather include your >> own >> css file to overwrite rules you want to change. >> >> for the JS part. mostly it is only some script wich "blures" links after >> klick >> cause Internet explorer shows some ugly dotted line around links. if use >> default >> typo3 Javascript this code might be in there too.. >> >> this can be disabled via Typoscript Template option >> config.removeDefaultJS =1 >> >> if you want do build a "modern" javascript menu. you could >> relativ easyly do this by simply unsing the TMENU to render >> your menu code. an attach your own javascript via: >> >> page.includeJS.1 = fileadmin/myjavascriptmenu.js >> >> chris >> >> -- >> Christian Wolff // Berlin >> http://www.connye.com >> >> Latest Projects: >> http://www.bizim-tur.de/ | http://www.flycall.de | http://www.atr24.de >> _______________________________________________ >> TYPO3-project-templavoila mailing list >> TYPO3-project-templavoila (AT) lists...netfielders.de >> >> http://lists.netfielders.de/cgi-bin/...ct-templavoila >> -- Christian Wolff // Berlin http://www.connye.com Latest Projects: http://www.bizim-tur.de/ | http://www.flycall.de | http://www.atr24.de _______________________________________________ TYPO3-project-templavoila mailing list TYPO3-project-templavoila (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-templavoila |
|
#5
|
|||
|
|||
|
i think the best way to solve this problem is just install only source
pakkage. i installd source+dummy and that the reson why it takes automaticaly defualt settings from the extension moder template building . Jusy like you sait its a typo3 question. alix 2008/7/28 Christian Wolff <Chris (AT) connye (DOT) com> > Hi Alix, > the default comment can be disabled via: > config.disablePrefixComment = 1 > > the automatic-css > <link rel="stylesheet" type="text/css" > href="typo3temp/stylesheet_0215ea43e2.css" /> > > the automatic css file is inserted automaticaly by some extensions > its mostly not a good idea to disable it. cause you want css_styled_content > in general situations. > > chris > > > On Mon, 28 Jul 2008 20:35:56 +0200, Alix Justus <alix.justus (AT) gmail (DOT) com> > wrote: > > > thanks chris, for the javascrip disabling, for the first problem with > > css, i > > do include my own css file, but it stil inclueds automaticaly its own css > > file with dafault tekst of developer Kasper Skaarhoj. I wil try to find > > the > > answer on typo3 mailing list. > > > > <!-- > > This website is powered by TYPO3 - inspiring people to share! > > TYPO3 is a free open source Content Management Framework initially > > created by Kasper Skaarhoj and licensed under GNU/GPL. > > > > TYPO3 is copyright 1998-2008 of Kasper Skaarhoj. Extensions are > > copyright of their respective owners. > > Information and contribution at http://typo3.com/ and > http://typo3.org/ > > > > --> > > > > <link rel="stylesheet" type="text/css" > > href="typo3temp/stylesheet_0215ea43e2.css" /> > > > > > > 2008/7/28 Christian Wolff <Chris (AT) connye (DOT) com> > > > >> On Mon, 28 Jul 2008 18:10:40 +0200, Alix Justus <alix.justus (AT) gmail (DOT) com> > >> wrote: > >> > >> > >> [..] > >> > > >> > <link rel="stylesheet" type="text/css" > >> > href="typo3temp/stylesheet_0215ea43e2.css" /> > >> > <title>Root page</title> > >> > <meta name="generator" content="TYPO3 4.2 CMS" /> > >> > <script type="text/javascript" > >> > src="typo3temp/javascript_93077bb238.js"></script> > >> > > >> > > >> > > >> > thanks in advance, > >> > > >> > > >> > alix > >> > >> Hi Alix > >> > >> The two files, > >> are automatic compiled files from typo3 and maybe extensions. > >> and this is more general typo3 specific then templaVoila, > >> for most Parte the css file contains the css defintions from > >> css_styled_content > >> to give a basic styling to the content an make thinks like different > >> text+Image > >> layouts work. its best to not touch the css file but rather include your > >> own > >> css file to overwrite rules you want to change. > >> > >> for the JS part. mostly it is only some script wich "blures" links after > >> klick > >> cause Internet explorer shows some ugly dotted line around links. if use > >> default > >> typo3 Javascript this code might be in there too.. > >> > >> this can be disabled via Typoscript Template option > >> config.removeDefaultJS =1 > >> > >> if you want do build a "modern" javascript menu. you could > >> relativ easyly do this by simply unsing the TMENU to render > >> your menu code. an attach your own javascript via: > >> > >> page.includeJS.1 = fileadmin/myjavascriptmenu.js > >> > >> chris > >> > >> -- > >> Christian Wolff // Berlin > >> http://www.connye.com > >> > >> Latest Projects: > >> http://www.bizim-tur.de/ | http://www.flycall.de | http://www.atr24.de > >> _______________________________________________ > >> TYPO3-project-templavoila mailing list > >> TYPO3-project-templavoila (AT) lists...netfielders.de > >> > >> > http://lists.netfielders.de/cgi-bin/...ct-templavoila > >> > > > > -- > Christian Wolff // Berlin > http://www.connye.com > > Latest Projects: > http://www.bizim-tur.de/ | http://www.flycall.de | http://www.atr24.de > _______________________________________________ > TYPO3-project-templavoila mailing list > TYPO3-project-templavoila (AT) lists...netfielders.de > > http://lists.netfielders.de/cgi-bin/...ct-templavoila > _______________________________________________ TYPO3-project-templavoila mailing list TYPO3-project-templavoila (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-templavoila |
|
#6
|
|||
|
|||
|
Hi!
Alix Justus wrote: > i think the best way to solve this problem is just install only source > pakkage. i installd source+dummy and that the reson why it takes > automaticaly defualt settings from the extension moder template building . > Jusy like you sait its a typo3 question. If you install only source package, you will not be able to work with TYPO3. Modern template building has nothing to do with dummy package. There are lots of tutorials about TYPO3. Why don't you start with reading instead of making wrong theories about TYPO3? -- Dmitry Dulepov TYPO3 Core team Latest article: http://typo3bloke.net/post-details/d...than_you_need/ More about TYPO3: http://typo3bloke.net/ Subscribe: http://typo3bloke.net/rss.xml _______________________________________________ TYPO3-project-templavoila mailing list TYPO3-project-templavoila (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-templavoila |
|
#7
|
|||
|
|||
|
i did read tutorials about typo3 before begining making a website
http://typo3.org/documentation/docum....1.0/view/1/2/ , i am just new in typo3 and its my new website and i also posted on wrong mailinglist, but you can correcy my foults by giving an answer if you want to. But stil no point to go further with this topic, couse it should be on typo3 mailinglist and not on typo3-templavoila. thanks, alix 2008/7/29 Dmitry Dulepov [typo3] <dmitry (AT) typo3 (DOT) org> > Hi! > > Alix Justus wrote: > > i think the best way to solve this problem is just install only source > > pakkage. i installd source+dummy and that the reson why it takes > > automaticaly defualt settings from the extension moder template building > . > > Jusy like you sait its a typo3 question. > > If you install only source package, you will not be able to work with > TYPO3. > > Modern template building has nothing to do with dummy package. > > There are lots of tutorials about TYPO3. Why don't you start with reading > instead of making wrong theories about TYPO3? > > -- > Dmitry Dulepov > TYPO3 Core team > Latest article: > http://typo3bloke.net/post-details/d...than_you_need/ > More about TYPO3: http://typo3bloke.net/ > Subscribe: http://typo3bloke.net/rss.xml > _______________________________________________ > TYPO3-project-templavoila mailing list > TYPO3-project-templavoila (AT) lists...netfielders.de > > http://lists.netfielders.de/cgi-bin/...ct-templavoila > _______________________________________________ TYPO3-project-templavoila mailing list TYPO3-project-templavoila (AT) lists...netfielders.de http://lists.netfielders.de/cgi-bin/...ct-templavoila |
| Lesezeichen |
| Themen-Optionen | |
| Ansicht | Thema bewerten |
|
|
|
||||
| Thema | Autor | Forum | Antworten | Letzter Beitrag |
| [TYPO3] Disable templavoila context menu in filelist | Elijah Alcantara | typo3-english@lists.netfielders.de | 2 | 16.04.2008 12:11 |
| [TYPO3-german] Probleme mit rgaccordion in templavoila - condition für templavoila content | Ralf-René Schröder | typo3-german@lists.netfielders.de | 0 | 26.01.2008 15:24 |
| [TYPO3] GMENU - vertical menu | P | typo3-english@lists.netfielders.de | 0 | 20.03.2007 09:03 |
| [TYPO3] Independent horizontal and a vertical menu | Nick Weisser | typo3-english@lists.netfielders.de | 4 | 18.01.2007 17:05 |
| [TYPO3-templavoila] Activated main menu's text in sub menu list | Siller Ákos | typo3-project-templavoila@lists.netfielders.de | 1 | 04.12.2006 08:57 |