Monday 22 June 2009 2:37:17 am
Hi, I've never used eZ webin but I think that you can change the look of your site by modifying the <head></head> section of the pagelayout (but there is other solution like creating your own extension design).
<style type="text/css">
@import url({"stylesheets/core.css"|ezdesign(no)});
@import url({"stylesheets/debug.css"|ezdesign(no)});
@import url({"stylesheets/pagelayout.css"|ezdesign(no)});
@import url({"stylesheets/content.css"|ezdesign(no)});
@import url({"stylesheets/websitetoolbar.css"|ezdesign(no)});
{foreach ezini( 'StylesheetSettings', 'CSSFileList', 'design.ini' ) as $css_file}
@import url({concat( 'stylesheets/', $css_file )|ezdesign});
{/foreach}
@import url({ezini('StylesheetSettings','ClassesCSS','design.ini')|ezroot(no)});
@import url({ezini('StylesheetSettings','SiteCSS','design.ini')|ezroot(no)});
/* ADD YOUR CSS FILE HERE */
</style>
<link rel="stylesheet" type="text/css" href={"stylesheets/print.css"|ezdesign} media="print" />
<!-- IE conditional comments; for bug fixes for different IE versions -->
<!--[if IE 5]> <style type="text/css"> @import url({"stylesheets/browsers/ie5.css"|ezdesign(no)}); </style> <![endif]-->
<!--[if lte IE 7]> <style type="text/css"> @import url({"stylesheets/browsers/ie7lte.css"|ezdesign(no)}); </style> <![endif]-->
{foreach ezini( 'JavaScriptSettings', 'JavaScriptList', 'design.ini' ) as $script}
<script language="javascript" type="text/javascript" src={concat( 'javascript/', $script )|ezdesign}></script>
{/foreach}
/* ADD YOUR JS FILE HERE */
For the display of :
extension/ezwebin/design/ezwebin/templates/pagelayout.tpl
extension/ezwebin/design/ezwebin/templates/page_head.tpl
extension/ezwebin/design/ezwebin/templates/link.tpl
extension/ezwebin/design/ezwebin/templates/page_head_style.tpl
extension/ezwebin/design/ezwebin/templates/page_head_script.tpl extension/ezwebin/design/ezwebin/templates/page_header.tpl It's because the "inline template debug" is activited for your siteaccess. Seb
|