Page 1 of 1

ThemeManager: css option url() only works without quotes

Posted: Fri May 05, 2006 8:37 pm
by simb
Hi everybody,

as I'm new in this forum, please let me first of all state, how much I like CMSMS!
I've already seen and tested a lot of CMS systems, but none that fits the different needs of different roles this much and remains easy to use! Great piece of coding!!!  ;D

I just stumbled over a bug/feature that cost me a lot of time to find, so I post it here:
Most CSS-editors work better if you use e.g.

Code: Select all

body {
    background-image: url("link/to/image.gif");
}
instead of

Code: Select all

body {
    background-image: url(link/to/image.gif);
}
but only without the quotes in url() the themeManager will export your images also.

I hope this information helps someone.

simb