Use of CSS files / Verwendung von CSS-Dateien
Use of CSS files / Verwendung von CSS-Dateien
English Version:
*******************************
Hi all,
is it generally better to modify and enhance the existing CSS files (frontend.css and print_layout.css) to fit to my needs or should I rather create new ones?
Thanks in advance.
*******************************
Deutsche Version:
*******************************
Hi,
is es generell besser, die vorhandenen CSS Dateien (frontend.css und print_layout.css) abzuändern und zu erweitern, damit sie zu meinen Seiten passen oder sollte ich komplett neue CSS Dateien machen?
Vielen Dank im Voraus.
*******************************
Joachim
*******************************
Hi all,
is it generally better to modify and enhance the existing CSS files (frontend.css and print_layout.css) to fit to my needs or should I rather create new ones?
Thanks in advance.
*******************************
Deutsche Version:
*******************************
Hi,
is es generell besser, die vorhandenen CSS Dateien (frontend.css und print_layout.css) abzuändern und zu erweitern, damit sie zu meinen Seiten passen oder sollte ich komplett neue CSS Dateien machen?
Vielen Dank im Voraus.
*******************************
Joachim
Hi rk,
that answers not my question. The question is whether to start programming an own css file or use the two available files? When I use an own css file, it does not cover the settings for example for articles. When I enhance the frontend.css, it does. So I think, it would be better to enhance an available css file with my own settings. Am I right?
Joachim
that answers not my question. The question is whether to start programming an own css file or use the two available files? When I use an own css file, it does not cover the settings for example for articles. When I enhance the frontend.css, it does. So I think, it would be better to enhance an available css file with my own settings. Am I right?
Joachim
Yes, for me a combination with
http://www.pspad.com/
-------------------
# FTP-Client – bearbeiten Sie Ihre Dateien direkt auf dem Server
# Installation beinhaltet Vorlagen für HTML, PHP, Pascal, JScript, VBScript, MySQL, MS-Dos, Perl, ...
# Integration von HTML TiDy zum Überprüfen und Formatieren von HTML-Code, Umwandlung in CSS, XML, XHTML
# optionale Integration des CSS-Editors TopStyle Lite
-------------------
and TopStyle Lite http://www.newsgator.com/NGOLProduct.as ... dView=lite
works very well.
Knut
http://www.pspad.com/
-------------------
# FTP-Client – bearbeiten Sie Ihre Dateien direkt auf dem Server
# Installation beinhaltet Vorlagen für HTML, PHP, Pascal, JScript, VBScript, MySQL, MS-Dos, Perl, ...
# Integration von HTML TiDy zum Überprüfen und Formatieren von HTML-Code, Umwandlung in CSS, XML, XHTML
# optionale Integration des CSS-Editors TopStyle Lite
-------------------
and TopStyle Lite http://www.newsgator.com/NGOLProduct.as ... dView=lite
works very well.
Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
- Oliver Georgi
- Site Admin
- Posts: 9907
- Joined: Fri 3. Oct 2003, 22:22
- Contact:
@rk - it's NO good idea to put own CSS style information in HTML head. Place custom CSS files in template/inc_css and select CSS file in template. You can use as many as you like.
You can also set custom CSS file directly from your own PHP code.
...means "template/inc_css/custom/my.css".
I recommend: forget the default frontend.css and build own from scratch. Maybe you can have a look in it and use some pre-defined classes of it.
Oliver
You can also set custom CSS file directly from your own PHP code.
Code: Select all
$GLOBALS['block']['css'][] = 'custom/my.css';
I recommend: forget the default frontend.css and build own from scratch. Maybe you can have a look in it and use some pre-defined classes of it.
Oliver