Tuesday 24 February 2009 6:49:08 am
Hello to you all.
I must override the site-color.css file but actually I don't have write permission on server. I tried writing a new mods.css file with only:
div#topmenu ul li a
{
color: #FFFFFF;
font-size: 14px;
font-weight: normal;
border-right: none;
}
'cause I don't have write permissione I thinked to override putting mods.css file into the directory: .../my_server_path/design/ezwebin/override/stylesheets/mods.css and adding to the pagelayout (after all default import) the code:
@import url({"mod.css"|ezdesign(no)});
so i have:
<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)});
@import url({"mod.css"|ezdesign(no)});
</style>
In the source code of the page all seems work but the new css right don't override the default one. And nothing changes.
Anyone have suggestion? Where is my error?
|